LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
geo::WireID Struct Reference

#include "geo_types.h"

Inheritance diagram for geo::WireID:
geo::PlaneID geo::TPCID geo::CryostatID

Public Types

using WireID_t = unsigned int
 Type for the ID number. More...
 
using ThisID_t = WireID
 Type of this ID. More...
 
using ParentID_t = PlaneID
 Type of the parent ID. More...
 
template<std::size_t L>
using ID_t = details::AbsIDtype< L, ThisID_t >
 Type of the ID with the specified level L. More...
 
template<std::size_t A>
using UpperID_t = details::RelIDtype< A, ThisID_t >
 Type of the ID A levels above this one. More...
 
using PlaneID_t = unsigned int
 Type for the ID number. More...
 
using TPCID_t = unsigned int
 Type for the ID number. More...
 
using CryostatID_t = unsigned int
 Type for the ID number. More...
 

Public Member Functions

constexpr WireID ()=default
 Default constructor: an invalid TPC ID. More...
 
constexpr WireID (PlaneID const &planeid, WireID_t w)
 Constructor: wire with index w in the plane identified by planeid. More...
 
constexpr WireID (CryostatID_t c, TPCID_t t, PlaneID_t p, WireID_t w)
 
constexpr auto const & deepestIndex () const
 Returns the value of the deepest ID available (wire's). More...
 
auto & deepestIndex ()
 Returns the deepest ID available (wire's). More...
 
constexpr ParentID_t const & parentID () const
 Return the parent ID of this one (a plane ID). More...
 
ParentID_tparentID ()
 Return the parent ID of this one (a plane ID). More...
 
template<std::size_t Index = 0U>
constexpr auto getIndex () const
 Returns the index level Index of this type. More...
 
template<std::size_t Index = 0U>
auto & writeIndex ()
 Returns the index level Index of this type. More...
 
template<std::size_t Above>
constexpr auto getRelIndex () const
 Returns the index Above levels higher than Level. More...
 
constexpr WireID const & asWireID () const
 Conversion to WireID (for convenience of notation). More...
 
WireIDasWireID ()
 Conversion to WireID (for convenience of notation). More...
 
constexpr WireID const & asConstWireID ()
 Conversion to WireID (for convenience of notation). More...
 
constexpr int cmp (WireID const &other) const
 Returns < 0 if this is smaller than tpcid, 0 if equal, > 0 if larger. More...
 
constexpr PlaneID const & planeID () const
 
constexpr PlaneID const & asPlaneID () const
 Conversion to PlaneID (for convenience of notation). More...
 
PlaneIDasPlaneID ()
 Conversion to PlaneID (for convenience of notation). More...
 
constexpr PlaneID const & asConstPlaneID ()
 Conversion to PlaneID (for convenience of notation). More...
 
constexpr int cmp (PlaneID const &other) const
 Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger. More...
 
constexpr int cmp (TPCID const &other) const
 Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger. More...
 
constexpr int cmp (CryostatID const &other) const
 Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger. More...
 
constexpr TPCID const & asTPCID () const
 Conversion to TPCID (for convenience of notation). More...
 
TPCIDasTPCID ()
 Conversion to TPCID (for convenience of notation). More...
 
constexpr TPCID const & asConstTPCID ()
 Conversion to TPCID (for convenience of notation). More...
 
constexpr CryostatID const & asCryostatID () const
 Conversion to CryostatID (for convenience of notation). More...
 
CryostatIDasCryostatID ()
 Conversion to CryostatID (for convenience of notation). More...
 
constexpr CryostatID const & asConstCryostatID ()
 Conversion to CryostatID (for convenience of notation). More...
 
std::string toString () const
 Human-readable representation of the wire ID. More...
 
 operator std::string () const
 Human-readable representation of the wire ID. More...
 
ID validity
constexpr operator bool () const
 Returns true if the ID is valid. More...
 
constexpr bool operator! () const
 Returns true if the ID is not valid. More...
 
void setValidity (bool valid)
 Sets the validity of the ID. More...
 
void markValid ()
 Sets the ID as valid. More...
 
void markInvalid ()
 Sets the ID as invalid. More...
 

Static Public Member Functions

static constexpr WireID_t getInvalidID ()
 Return the value of the invalid wire ID as a r-value. More...
 
template<typename T >
static constexpr int ThreeWayComparison (T a, T b)
 Returns < 0 if a < b, 0 if a == b, > 0 if a > b. More...
 

Public Attributes

WireID_t Wire = InvalidID
 Index of the wire within its plane. More...
 
PlaneID_t Plane = InvalidID
 Index of the plane within its TPC. More...
 
TPCID_t TPC = InvalidID
 Index of the TPC within its cryostat. More...
 
bool isValid = false
 Whether this ID points to a valid element. More...
 
CryostatID_t Cryostat = InvalidID
 Index of cryostat. More...
 

Static Public Attributes

static constexpr WireID_t InvalidID = std::numeric_limits<WireID_t>::max()
 Special code for an invalid ID. More...
 
static constexpr auto Level = geo::ElementLevel::Wire
 Level of this element. More...
 

Detailed Description

Definition at line 545 of file geo_types.h.

Member Typedef Documentation

using geo::CryostatID::CryostatID_t = unsigned int
inherited

Type for the ID number.

Definition at line 193 of file geo_types.h.

template<std::size_t L>
using geo::WireID::ID_t = details::AbsIDtype<L, ThisID_t>

Type of the ID with the specified level L.

Definition at line 553 of file geo_types.h.

Type of the parent ID.

Definition at line 549 of file geo_types.h.

using geo::PlaneID::PlaneID_t = unsigned int
inherited

Type for the ID number.

Definition at line 464 of file geo_types.h.

Type of this ID.

Definition at line 548 of file geo_types.h.

using geo::TPCID::TPCID_t = unsigned int
inherited

Type for the ID number.

Definition at line 382 of file geo_types.h.

template<std::size_t A>
using geo::WireID::UpperID_t = details::RelIDtype<A, ThisID_t>

Type of the ID A levels above this one.

Definition at line 557 of file geo_types.h.

using geo::WireID::WireID_t = unsigned int

Type for the ID number.

Definition at line 546 of file geo_types.h.

Constructor & Destructor Documentation

constexpr geo::WireID::WireID ( PlaneID const &  planeid,
WireID_t  w 
)
inline

Constructor: wire with index w in the plane identified by planeid.

Definition at line 569 of file geo_types.h.

569 : PlaneID(planeid), Wire(w) {}
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:563
constexpr PlaneID()=default
Default constructor: an invalid plane ID.
Float_t w
Definition: plot.C:20
constexpr geo::WireID::WireID ( CryostatID_t  c,
TPCID_t  t,
PlaneID_t  p,
WireID_t  w 
)
inline

Constructor: wire with index w in cryostat index c, TPC index t, plane index p

Definition at line 573 of file geo_types.h.

References geo::details::writeToString().

573  : PlaneID(c, t, p), Wire(w)
574  {}
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:563
constexpr PlaneID()=default
Default constructor: an invalid plane ID.
Float_t w
Definition: plot.C:20

Member Function Documentation

constexpr CryostatID const& geo::CryostatID::asConstCryostatID ( )
inlineinherited

Conversion to CryostatID (for convenience of notation).

Definition at line 279 of file geo_types.h.

279 { return *this; }
constexpr PlaneID const& geo::PlaneID::asConstPlaneID ( )
inlineinherited

Conversion to PlaneID (for convenience of notation).

Definition at line 524 of file geo_types.h.

524 { return *this; }
constexpr TPCID const& geo::TPCID::asConstTPCID ( )
inlineinherited

Conversion to TPCID (for convenience of notation).

Definition at line 442 of file geo_types.h.

442 { return *this; }
constexpr WireID const& geo::WireID::asConstWireID ( )
inline

Conversion to WireID (for convenience of notation).

Definition at line 606 of file geo_types.h.

606 { return *this; }
constexpr CryostatID const& geo::CryostatID::asCryostatID ( ) const
inlineinherited

Conversion to CryostatID (for convenience of notation).

Definition at line 275 of file geo_types.h.

Referenced by readout::operator!=(), geo::operator!=(), readout::operator<(), geo::operator<(), readout::operator<<(), geo::operator<<(), readout::operator==(), and geo::operator==().

275 { return *this; }
CryostatID& geo::CryostatID::asCryostatID ( )
inlineinherited

Conversion to CryostatID (for convenience of notation).

Definition at line 277 of file geo_types.h.

277 { return *this; }
PlaneID& geo::PlaneID::asPlaneID ( )
inlineinherited

Conversion to PlaneID (for convenience of notation).

Definition at line 522 of file geo_types.h.

522 { return *this; }
TPCID& geo::TPCID::asTPCID ( )
inlineinherited

Conversion to TPCID (for convenience of notation).

Definition at line 440 of file geo_types.h.

440 { return *this; }
constexpr WireID const& geo::WireID::asWireID ( ) const
inline

Conversion to WireID (for convenience of notation).

Definition at line 602 of file geo_types.h.

602 { return *this; }
WireID& geo::WireID::asWireID ( )
inline

Conversion to WireID (for convenience of notation).

Definition at line 604 of file geo_types.h.

604 { return *this; }
constexpr int geo::CryostatID::cmp ( CryostatID const &  other) const
inlineinherited

Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.

Definition at line 269 of file geo_types.h.

References geo::CryostatID::deepestIndex().

Referenced by readout::TPCsetID::cmp(), geo::OpDetID::cmp(), geo::TPCID::cmp(), readout::operator<(), and geo::operator<().

270  {
271  return ThreeWayComparison(deepestIndex(), other.deepestIndex());
272  }
static constexpr int ThreeWayComparison(T a, T b)
Returns < 0 if a < b, 0 if a == b, > 0 if a > b.
Definition: geo_types.h:289
constexpr auto const & deepestIndex() const
Returns the value of the deepest ID available (cryostat&#39;s).
Definition: geo_types.h:251
constexpr int geo::TPCID::cmp ( TPCID const &  other) const
inlineinherited

Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.

Definition at line 445 of file geo_types.h.

References geo::CryostatID::cmp(), and geo::TPCID::deepestIndex().

Referenced by geo::PlaneID::cmp().

446  {
447  int cmp_res = CryostatID::cmp(other);
448  if (cmp_res == 0) // same cryostat: compare TPC
449  return ThreeWayComparison(deepestIndex(), other.deepestIndex());
450  else // return the order of cryostats
451  return cmp_res;
452  } // cmp()
static constexpr int ThreeWayComparison(T a, T b)
Returns < 0 if a < b, 0 if a == b, > 0 if a > b.
Definition: geo_types.h:289
constexpr auto const & deepestIndex() const
Returns the value of the deepest ID available (TPC&#39;s).
Definition: geo_types.h:420
constexpr int cmp(CryostatID const &other) const
Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.
Definition: geo_types.h:269
constexpr int geo::PlaneID::cmp ( PlaneID const &  other) const
inlineinherited

Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.

Definition at line 527 of file geo_types.h.

References geo::TPCID::cmp(), and geo::PlaneID::deepestIndex().

Referenced by cmp().

528  {
529  int cmp_res = TPCID::cmp(other);
530  if (cmp_res == 0) // same TPC: compare plane
531  return ThreeWayComparison(deepestIndex(), other.deepestIndex());
532  else // return the order of planes
533  return cmp_res;
534  } // cmp()
constexpr int cmp(TPCID const &other) const
Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.
Definition: geo_types.h:445
static constexpr int ThreeWayComparison(T a, T b)
Returns < 0 if a < b, 0 if a == b, > 0 if a > b.
Definition: geo_types.h:289
constexpr auto const & deepestIndex() const
Returns the value of the deepest ID available (plane&#39;s).
Definition: geo_types.h:502
constexpr int geo::WireID::cmp ( WireID const &  other) const
inline

Returns < 0 if this is smaller than tpcid, 0 if equal, > 0 if larger.

Definition at line 609 of file geo_types.h.

References geo::PlaneID::cmp(), and deepestIndex().

Referenced by cluster::ClusterCrawlerAlg::SortByMultiplet().

610  {
611  int cmp_res = PlaneID::cmp(other);
612  if (cmp_res == 0) // same plane: compare wires
613  return ThreeWayComparison(deepestIndex(), other.deepestIndex());
614  else // return the order of wire
615  return cmp_res;
616  } // cmp()
static constexpr int ThreeWayComparison(T a, T b)
Returns < 0 if a < b, 0 if a == b, > 0 if a > b.
Definition: geo_types.h:289
constexpr auto const & deepestIndex() const
Returns the value of the deepest ID available (wire&#39;s).
Definition: geo_types.h:584
constexpr int cmp(PlaneID const &other) const
Returns < 0 if this is smaller than other, 0 if equal, > 0 if larger.
Definition: geo_types.h:527
constexpr auto const& geo::WireID::deepestIndex ( ) const
inline

Returns the value of the deepest ID available (wire's).

Definition at line 584 of file geo_types.h.

Referenced by cmp().

584 { return Wire; }
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:563
auto& geo::WireID::deepestIndex ( )
inline

Returns the deepest ID available (wire's).

Definition at line 586 of file geo_types.h.

586 { return Wire; }
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:563
template<std::size_t Index>
constexpr auto geo::WireID::getIndex ( ) const

Returns the index level Index of this type.

Definition at line 947 of file geo_types.h.

948 {
949  static_assert(Index <= Level, "This ID type does not have the requested Index level.");
950  return details::getAbsIDindex<Index>(*this);
951 } // geo::WireID::getIndex() const
static constexpr auto Level
Level of this element.
Definition: geo_types.h:623
static constexpr WireID_t geo::WireID::getInvalidID ( )
inlinestatic

Return the value of the invalid wire ID as a r-value.

Definition at line 626 of file geo_types.h.

References InvalidID.

626 { return WireID::InvalidID; }
static constexpr WireID_t InvalidID
Special code for an invalid ID.
Definition: geo_types.h:561
template<std::size_t Above>
constexpr auto geo::WireID::getRelIndex ( ) const

Returns the index Above levels higher than Level.

Definition at line 961 of file geo_types.h.

962 {
963  static_assert(Above <= Level, "This ID type does not have the requested Index level.");
964  return getIndex<Level - Above>();
965 } // geo::WireID::getRelIndex()
constexpr auto getIndex() const
Returns the index level Index of this type.
Definition: geo_types.h:947
static constexpr auto Level
Level of this element.
Definition: geo_types.h:623
void geo::CryostatID::markInvalid ( )
inlineinherited

Sets the ID as invalid.

Definition at line 238 of file geo_types.h.

References geo::details::writeToString().

Referenced by geo::PlaneGeo::ClosestWireID(), geo::GeometryCore::FindTPCAtPosition(), geo::GeometryCore::GetEndPlaneID(), geo::GeometryCore::GetEndTPCID(), and geo::GeometryCore::GetEndWireID().

238 { setValidity(false); }
void setValidity(bool valid)
Sets the validity of the ID.
Definition: geo_types.h:232
void geo::CryostatID::markValid ( )
inlineinherited

Sets the ID as valid.

Definition at line 235 of file geo_types.h.

235 { setValidity(true); }
void setValidity(bool valid)
Sets the validity of the ID.
Definition: geo_types.h:232
constexpr geo::CryostatID::operator bool ( ) const
inlineexplicitinherited

Returns true if the ID is valid.

Definition at line 226 of file geo_types.h.

226 { return isValid; }
bool isValid
Whether this ID points to a valid element.
Definition: geo_types.h:210
geo::WireID::operator std::string ( ) const
inlineexplicit

Human-readable representation of the wire ID.

Definition at line 579 of file geo_types.h.

579 { return toString(); }
std::string toString() const
Human-readable representation of the wire ID.
Definition: geo_types.h:578
constexpr bool geo::CryostatID::operator! ( ) const
inlineinherited

Returns true if the ID is not valid.

Definition at line 229 of file geo_types.h.

229 { return !isValid; }
bool isValid
Whether this ID points to a valid element.
Definition: geo_types.h:210
constexpr ParentID_t const& geo::WireID::parentID ( ) const
inline

Return the parent ID of this one (a plane ID).

Definition at line 588 of file geo_types.h.

588 { return *this; }
ParentID_t& geo::WireID::parentID ( )
inline

Return the parent ID of this one (a plane ID).

Definition at line 590 of file geo_types.h.

590 { return *this; }
void geo::CryostatID::setValidity ( bool  valid)
inlineinherited

Sets the validity of the ID.

Definition at line 232 of file geo_types.h.

232 { isValid = valid; }
bool isValid
Whether this ID points to a valid element.
Definition: geo_types.h:210
template<typename T >
static constexpr int geo::CryostatID::ThreeWayComparison ( a,
b 
)
inlinestaticinherited

Returns < 0 if a < b, 0 if a == b, > 0 if a > b.

Definition at line 289 of file geo_types.h.

290  {
291  return (a == b) ? 0 : ((a < b) ? -1 : +1);
292  }
std::string geo::WireID::toString ( ) const
inline

Human-readable representation of the wire ID.

Definition at line 578 of file geo_types.h.

578 { return details::writeToString(*this); }
std::string writeToString(T const &value)
Write the argument into a string.
Definition: geo_types.h:842
template<std::size_t Index>
auto & geo::WireID::writeIndex ( )

Returns the index level Index of this type.

Definition at line 954 of file geo_types.h.

955 {
956  static_assert(Index <= Level, "This ID type does not have the requested Index level.");
957  return details::getAbsIDindex<Index>(*this);
958 } // geo::WireID::writeIndex()
static constexpr auto Level
Level of this element.
Definition: geo_types.h:623

Member Data Documentation

CryostatID_t geo::CryostatID::Cryostat = InvalidID
inherited

Index of cryostat.

Definition at line 211 of file geo_types.h.

Referenced by detsim::WienerFilterAna::analyze(), trkf::SpacePointAna::analyze(), pma::ProjectionMatchingAlg::buildShowerSeg(), mvapid::MVAAlg::CalcSegmentdEdxDist(), tca::ChgFracBetween(), tca::ChgFracNearEnd(), lar_cluster3d::StandardHit3DBuilder::CollectArtHits(), lar_cluster3d::SnippetHit3DBuilder::CollectArtHits(), trkf::SpacePointAlg::compatible(), tca::CompleteIncomplete3DVerticesInGaps(), ems::MultiEMShowers::convCluster(), geo::ChannelMapStandardAlg::ConvertROPtoWirePlane(), detinfo::DetectorPropertiesData::ConvertTicksToX(), geo::ChannelMapStandardAlg::ConvertTPCsetToTPC(), geo::ChannelMapStandardAlg::ConvertTPCtoTPCset(), geo::ChannelMapStandardAlg::ConvertWirePlaneToROP(), detinfo::DetectorPropertiesData::ConvertXToTicks(), geo::GeometryCore::Cryostat(), geo::GeometryCore::CryostatPtr(), cluster::ClusterCrawlerAlg::EncodeCTP(), tca::EncodeCTP(), ems::EndPoint::EndPoint(), trkf::SpacePointAlg::fillComplexSpacePoint(), tca::FillmAllTraj(), lar_pandora::PFParticleHitDumper::FillRecoWires(), trkf::SpacePointAlg::fillSpacePoint(), tca::FillWireHitRange(), tca::FillWireIntersections(), tca::Find3DVertices(), apa::DisambigAlg::FindChanTimeEndPts(), hit::HitCheater::FindHitsOnChannel(), larg4::LArVoxelReadoutGeometry::FindNestedVolume(), tca::FindParent(), tca::FindShowers3D(), geo::GeometryCore::FindTPCAtPosition(), tca::FitTP3Ds(), ems::EMShower3D::GetCloseHits(), geo::GeometryCore::GetClosestOpDet(), geo::GeometryCore::GetEndTPCID(), geo::GeometryCore::GetEndTPCsetID(), nnet::TrainingDataAlg::getProjection(), pma::Track3D::GetUnconstrainedProj3D(), detinfo::DetectorPropertiesData::GetXTicksOffset(), cluster::MergeClusterAlg::GlobalWire(), cluster::BlurredClusteringAlg::GlobalWire(), shower::EMShowerAlg::GlobalWire_(), geo::GeometryCore::HasCryostat(), tss::Hit2D::Hit2D(), ems::Hit2D::Hit2D(), pma::Hit3D::Hit3D(), lar_cluster3d::SpacePointHit3DBuilder::Hit3DBuilder(), hit::DisambigCheater::InitHitToWids(), trkf::KHitWireLine::KHitWireLine(), trkf::KHitWireX::KHitWireX(), lar_cluster3d::StandardHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::SnippetHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::StandardHit3DBuilder::makeHitPair(), lar_cluster3d::SnippetHit3DBuilder::makeHitPair(), lar_cluster3d::StandardHit3DBuilder::makeHitTriplet(), lar_cluster3d::SnippetHit3DBuilder::makeHitTriplet(), tca::MakePFPTjs(), trkf::SpacePointAlg::makeSpacePoints(), trkf::CosmicTrackerAlg::MakeSPT(), tca::Match2Planes(), evd::SimulationDrawer::MCTruthOrtho(), geo::ChannelMapStandardAlg::NTPCsets(), geo::operator!=(), geo::operator<(), anab::operator<<(), recob::operator<<(), geo::operator<<(), geo::operator==(), lar_cluster3d::PrincipalComponentsAlg::PCAAnalysis_2D(), tca::Print3S(), tca::Print3V(), tca::PrintAllTraj(), tca::PrintTP3Ds(), cluster::LineCluster::produce(), cluster::TrajCluster::produce(), hit::DPRawHitFinder::produce(), calo::Calorimetry::produce(), detsim::SimDriftElectrons::produce(), calo::GnocchiCalorimetry::produce(), trkf::SpacePointAlg::separation(), tca::SignalAtTp(), cheat::BackTracker::SpacePointHitsToWeightedXYZ(), apa::DisambigAlg::TrivialDisambig(), tca::ValidTwoPlaneMatch(), trkf::VertexFitAlg::VertexFit(), cluster::ClusterCrawlerAlg::Vtx3ClusterMatch(), cluster::ClusterCrawlerAlg::Vtx3ClusterSplit(), cluster::ClusterCrawlerAlg::VtxMatch(), tca::WireHitRangeOK(), and lar_cluster3d::SnippetHit3DBuilder::WireIDsIntersect().

constexpr WireID_t geo::WireID::InvalidID = std::numeric_limits<WireID_t>::max()
static

Special code for an invalid ID.

Definition at line 561 of file geo_types.h.

Referenced by getInvalidID().

constexpr auto geo::WireID::Level = geo::ElementLevel::Wire
static

Level of this element.

Definition at line 623 of file geo_types.h.

PlaneID_t geo::PlaneID::Plane = InvalidID
inherited

Index of the plane within its TPC.

Definition at line 481 of file geo_types.h.

Referenced by tca::AddHits(), tca::AddLAHits(), tca::AddLooseHits(), tca::AddPointsInRange(), ClusteringValidation::ClusterAnalyser::Analyse(), detsim::WienerFilterAna::analyze(), hit::MagDriftAna::analyze(), hit::HitFinderAna::analyze(), trkf::SpacePointAna::analyze(), nnet::PointIdEffTest::analyze(), calo::TrackCalorimetryAlg::AnalyzeHit(), lar_cluster3d::StandardHit3DBuilder::BuildChannelStatusVec(), lar_cluster3d::SnippetHit3DBuilder::BuildChannelStatusVec(), mvapid::MVAAlg::CalcSegmentdEdxDist(), ShowerRecoTools::ShowerUnidirectiondEdx::CalculateElement(), ShowerRecoTools::ShowerTrajPointdEdx::CalculateElement(), evd::HitSelector::ChangeHit(), trkf::CCTrackMaker::ChargeNear(), shower::EMShowerAlg::CheckShowerPlanes(), tca::ChgFracNearPos(), tca::ChkBegin(), tca::ChkStopEndPts(), tca::ChkVtxAssociations(), lar_cluster3d::StandardHit3DBuilder::CollectArtHits(), lar_cluster3d::SnippetHit3DBuilder::CollectArtHits(), trkf::SpacePointAlg::compatible(), tca::CompleteIncompleteShower(), lcvn::PixelMapProducer< T, U >::ConvertLocaltoGlobal(), lcvn::PixelMapProducer< T, U >::ConvertLocaltoGlobalTDC(), detinfo::DetectorPropertiesData::ConvertTicksToX(), geo::ChannelMapStandardAlg::ConvertWirePlaneToROP(), detinfo::DetectorPropertiesData::ConvertXToTicks(), lcvn::PixelMapProducer< T, U >::CreateMapGivenBoundary(), tca::DeadWireCount(), tca::dEdx(), calo::CalorimetryAlg::dEdx_AMP(), calo::CalorimetryAlg::dEdx_AREA(), lcvn::PixelMapProducer< T, U >::DefineBoundary(), trkf::HitState::dump(), cluster::ClusterCrawlerAlg::EncodeCTP(), tca::EncodeCTP(), cluster::EndPointAlg::EndPoint(), ems::EndPoint::EndPoint(), tca::ExpectedHitsRMS(), trkf::KHitContainerWireLine::fill(), trkf::KHitContainerWireX::fill(), trkf::SpacePointAlg::fillComplexSpacePoint(), tca::FilldEdx(), tca::FillmAllTraj(), pid::PIDAAlg::FillPIDAProperties(), lar_pandora::PFParticleHitDumper::FillRecoWires(), trkf::SpacePointAlg::fillSpacePoint(), tca::Find2DVertices(), tca::Find3DRecoRange(), tca::Find3DVertices(), tca::FindCloseHits(), tca::FindCloseTjs(), shower::EMShowerAlg::FinddEdx_(), tca::TrajClusterAlg::FindJunkTraj(), tca::Finish3DShowers(), tca::FitTP3Ds(), tca::Forecast(), vertex::FeatureVertexFinder::Get3dVertexCandidates(), pid::Chi2PIDAlg::GetBitset(), ems::EMShower3D::GetCloseHits(), trkf::SeedFinderAlgorithm::GetHitDistAndProj(), pma::Track3D::GetUnconstrainedProj3D(), detinfo::DetectorPropertiesData::GetXTicksOffset(), cluster::MergeClusterAlg::GlobalWire(), cluster::BlurredClusteringAlg::GlobalWire(), shower::EMShowerAlg::GlobalWire_(), corner::CornerFinderAlg::GrabWires(), geo::TPCGeo::HasPlane(), tss::Hit2D::Hit2D(), pma::Hit3D::Hit3D(), lar_cluster3d::SpacePointHit3DBuilder::Hit3DBuilder(), util::PxHitConverter::HitToPxHit(), hit::HitFilterAlg::IsGoodHit(), trkf::KHitWireLine::KHitWireLine(), trkf::KHitWireX::KHitWireX(), lar_cluster3d::PCASeedFinderAlg::LineFit2DHits(), lar_cluster3d::HoughSeedFinderAlg::LineFit2DHits(), lar_cluster3d::StandardHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::SnippetHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::StandardHit3DBuilder::makeHitPair(), lar_cluster3d::SnippetHit3DBuilder::makeHitPair(), lar_cluster3d::StandardHit3DBuilder::makeHitTriplet(), lar_cluster3d::SnippetHit3DBuilder::makeHitTriplet(), tca::MakeJunkVertices(), tca::MakePFPTjs(), trkf::SpacePointAlg::makeSpacePoints(), trkf::CosmicTrackerAlg::MakeSPT(), tca::MakeVertexObsolete(), tca::MaxChargeAsymmetry(), cluster::ClusterCrawlerAlg::MergeHits(), tca::NearbySrcHit(), geo::operator!=(), geo::operator<(), anab::operator<<(), recob::operator<<(), geo::operator<<(), geo::operator==(), lar_cluster3d::PrincipalComponentsAlg::PCAAnalysis_2D(), geo::TPCGeo::Plane(), geo::GeometryCore::PlanePitch(), geo::TPCGeo::PlanePtr(), tca::PrintAllTraj(), tca::PrintPos(), hit::TTHitFinder::produce(), cluster::LineCluster::produce(), cluster::ClusterCrawler::produce(), cluster::TrajCluster::produce(), hit::GausHitFinder::produce(), shwf::ShowerReco::produce(), trkf::TrackKalmanCheater::produce(), hit::DPRawHitFinder::produce(), calo::Calorimetry::produce(), calo::GnocchiCalorimetry::produce(), tca::Reconcile2Vs(), tca::TrajClusterAlg::ReconstructAllTraj(), tca::ReversePropagate(), evd::RawDrawingOptions::RoIthreshold(), evd::HitSelector::SaveHits(), tca::SaveTjInfo(), tca::SaveTjInfoStuff(), trkf::SpacePointAlg::separation(), evd::RawDataDrawer::SetDrawingLimitsFromRoI(), tca::SetTPEnvironment(), reco::ClusterHit3D::setWireID(), tca::SignalAtTp(), tca::SignalAtTpInSlc(), cheat::BackTracker::SpacePointHitsToWeightedXYZ(), tca::SplitTrajCrossingVertices(), tca::StepAway(), geo::GeometryCore::ThirdPlane(), trkf::CosmicTrackerAlg::Track3D(), tca::TrimEndPts(), shower::LArPandoraShowerCheatingAlg::TrueParticleIDFromTrueChain(), reco::ClusterParameters::UpdateParameters(), tca::UpdateShower(), pma::ProjectionMatchingAlg::validate_on_adc(), tca::ValidTwoPlaneMatch(), cluster::ClusterCrawlerAlg::VtxMatch(), geo::GeometryCore::WireIDIntersectionCheck(), and lar_cluster3d::SnippetHit3DBuilder::WireIDsIntersect().

TPCID_t geo::TPCID::TPC = InvalidID
inherited

Index of the TPC within its cryostat.

Definition at line 399 of file geo_types.h.

Referenced by ClusteringValidation::ClusterAnalyser::Analyse(), detsim::WienerFilterAna::analyze(), trkf::SpacePointAna::analyze(), trkf::TrajectoryMCSFitter::breakTrajInSegments(), pma::ProjectionMatchingAlg::buildShowerSeg(), mvapid::MVAAlg::CalcSegmentdEdxDist(), ShowerRecoTools::ShowerTrajPointdEdx::CalculateElement(), geo::GeometryCore::ChannelsIntersect(), tca::ChgFracBetween(), tca::ChgFracNearEnd(), lar_cluster3d::StandardHit3DBuilder::CollectArtHits(), lar_cluster3d::SnippetHit3DBuilder::CollectArtHits(), trkf::SpacePointAlg::compatible(), tca::CompleteIncomplete3DVerticesInGaps(), ems::MultiEMShowers::convCluster(), detinfo::DetectorPropertiesData::ConvertTicksToX(), geo::ChannelMapStandardAlg::ConvertTPCtoTPCset(), geo::ChannelMapStandardAlg::ConvertWirePlaneToROP(), detinfo::DetectorPropertiesData::ConvertXToTicks(), cluster::ClusterCrawlerAlg::EncodeCTP(), tca::EncodeCTP(), ems::EndPoint::EndPoint(), trkf::SpacePointAlg::fillComplexSpacePoint(), tca::FillmAllTraj(), lar_pandora::PFParticleHitDumper::FillRecoWires(), trkf::SpacePointAlg::fillSpacePoint(), tca::FillWireHitRange(), tca::FillWireIntersections(), tca::Find3DVertices(), apa::DisambigAlg::FindChanTimeEndPts(), hit::HitCheater::FindHitsOnChannel(), shower::EMShowerAlg::FindInitialTrackHits(), larg4::LArVoxelReadoutGeometry::FindNestedVolume(), tca::FindParent(), tca::FindShowers3D(), tca::FitTP3Ds(), ems::EMShower3D::GetCloseHits(), cluster::TrajCluster::GetHits(), calo::Calorimetry::GetPitch(), nnet::TrainingDataAlg::getProjection(), pma::Track3D::GetUnconstrainedProj3D(), detinfo::DetectorPropertiesData::GetXTicksOffset(), cluster::MergeClusterAlg::GlobalWire(), cluster::BlurredClusteringAlg::GlobalWire(), shower::EMShowerAlg::GlobalWire_(), geo::CryostatGeo::HasTPC(), tss::Hit2D::Hit2D(), pma::Hit3D::Hit3D(), lar_cluster3d::SpacePointHit3DBuilder::Hit3DBuilder(), apa::APAGeometryAlg::Init(), hit::DisambigCheater::InitHitToWids(), trkf::KHitWireLine::KHitWireLine(), trkf::KHitWireX::KHitWireX(), trkf::TrajectoryMCSFitter::linearRegression(), apa::DisambigAlg::MakeCloseHits(), lar_cluster3d::StandardHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::SnippetHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::StandardHit3DBuilder::makeHitPair(), lar_cluster3d::SnippetHit3DBuilder::makeHitPair(), lar_cluster3d::StandardHit3DBuilder::makeHitTriplet(), lar_cluster3d::SnippetHit3DBuilder::makeHitTriplet(), tca::MakePFPTjs(), trkf::SpacePointAlg::makeSpacePoints(), trkf::CosmicTrackerAlg::MakeSPT(), tca::Match2Planes(), tca::Match3PlanesSpt(), evd::SimulationDrawer::MCTruthOrtho(), tca::NearbySrcHit(), geo::operator!=(), geo::operator<(), anab::operator<<(), recob::operator<<(), geo::operator<<(), geo::operator==(), shower::EMShowerAlg::OrderShowerHits_(), lar_cluster3d::PrincipalComponentsAlg::PCAAnalysis_2D(), tca::Print3S(), tca::Print3V(), tca::PrintAllTraj(), tca::PrintTP3Ds(), cluster::LineCluster::produce(), sce::SCECorrection::produce(), cluster::TrajCluster::produce(), hit::DPRawHitFinder::produce(), calo::Calorimetry::produce(), detsim::SimDriftElectrons::produce(), calo::GnocchiCalorimetry::produce(), shower::EMShowerAlg::Project3DPointOntoPlane_(), trkf::SpacePointAlg::separation(), tca::SignalAtTp(), cheat::BackTracker::SpacePointHitsToWeightedXYZ(), geo::CryostatGeo::TPC(), geo::CryostatGeo::TPCPtr(), apa::DisambigAlg::TrivialDisambig(), tca::ValidTwoPlaneMatch(), trkf::VertexFitAlg::VertexFit(), cluster::ClusterCrawlerAlg::Vtx3ClusterMatch(), cluster::ClusterCrawlerAlg::Vtx3ClusterSplit(), cluster::ClusterCrawlerAlg::VtxMatch(), tca::WireHitRangeOK(), lar_cluster3d::SnippetHit3DBuilder::WireIDsIntersect(), and calo::GnocchiCalorimetry::WireToTrajectoryPosition().

WireID_t geo::WireID::Wire = InvalidID

Index of the wire within its plane.

Definition at line 563 of file geo_types.h.

Referenced by detsim::WienerFilterAna::analyze(), vertex::FeatureVertexFinderAna::analyze(), hit::MagDriftAna::analyze(), pfpf::PFPAna::analyze(), cluster::ClusterAna::analyze(), hit::GausHitFinderAna::analyze(), trkf::SpacePointAna::analyze(), trkf::TrackAna::analyze(), lar_cluster3d::StandardHit3DBuilder::BuildChannelStatusVec(), lar_cluster3d::SnippetHit3DBuilder::BuildChannelStatusVec(), nnet::EmTrack< N >::classify_hits(), geo::PlaneGeo::ClosestWireID(), lcvn::PixelMapProducer< T, U >::ConvertLocaltoGlobal(), lcvn::PixelMapProducer< T, U >::ConvertLocaltoGlobalTDC(), lcvn::PixelMapProducer< T, U >::CreateMapGivenBoundary(), lcvn::PixelMapProducer< T, U >::DefineBoundary(), evd::RecoBaseDrawer::DrawTrack2D(), trkf::HitState::dump(), cluster::HoughBaseAlg::FastTransform(), lar_pandora::PFParticleHitDumper::FillRecoWires(), evd::TWQMultiTPCProjectionView::FindEndPoint(), evd::TWQProjectionView::FindEndPoint(), cluster::ClusterCrawlerAlg::FindHammerClusters(), hit::HitCheater::FindHitsOnChannel(), evd::TWQProjectionView::FindLineLength(), util::GeometryUtilities::Get2DPointProjection(), ems::EMShower3D::GetCloseHits(), pma::ProjectionMatchingAlg::GetCloseHits_(), opdet::GetHitGeometryInfo(), calo::Calorimetry::GetPitch(), pma::Track3D::GetUnconstrainedProj3D(), cluster::MergeClusterAlg::GlobalWire(), cluster::BlurredClusteringAlg::GlobalWire(), shower::EMShowerAlg::GlobalWire_(), shower::TCShowerAlg::goodHit(), corner::CornerFinderAlg::GrabWires(), geo::PlaneGeo::HasWire(), tss::Hit2D::Hit2D(), pma::Hit3D::Hit3D(), lar_cluster3d::SpacePointHit3DBuilder::Hit3DBuilder(), shower::LArPandoraShowerAlg::HitCoordinates(), util::PxHitConverter::HitToPxHit(), pma::Track3D::InitFromHits(), hit::DisambigCheater::InitHitToWids(), lar_cluster3d::PCASeedFinderAlg::LineFit2DHits(), lar_cluster3d::HoughSeedFinderAlg::LineFit2DHits(), apa::APAGeometryAlg::LineSegChanIntersect(), apa::DisambigAlg::MakeCloseHits(), lar_cluster3d::StandardHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::SnippetHit3DBuilder::makeDeadChannelPair(), lar_cluster3d::StandardHit3DBuilder::makeHitTriplet(), lar_cluster3d::SnippetHit3DBuilder::makeHitTriplet(), trkf::SpacePointAlg::makeSpacePoints(), trkf::CosmicTrackerAlg::MakeSPT(), cluster::ClusterCrawlerAlg::MergeHits(), geo::PlaneGeo::NearestWire(), lar_cluster3d::StandardHit3DBuilder::NearestWireID(), lar_cluster3d::SnippetHit3DBuilder::NearestWireID(), evd::RawDataDrawer::BoxDrawer::Operate(), evd::RawDataDrawer::RoIextractorClass::Operate(), geo::operator!=(), geo::operator<(), recob::operator<<(), geo::operator<<(), geo::operator==(), evd::RecoBaseDrawer::OpFlash2D(), shower::EMShowerAlg::OrderShowerHits_(), shower::LArPandoraShowerAlg::OrganizeHits(), calo::GnocchiCalorimetry::OrganizeHitsSnippets(), geo::ChannelMapStandardAlg::PlaneWireToChannel(), trk::TrackContainmentAlg::ProcessTracks(), evd::RawDataDrawer::BoxDrawer::ProcessWire(), hit::TTHitFinder::produce(), cluster::ClusterCheater::produce(), cluster::DBcluster::produce(), trkf::SpacePts::produce(), hit::DPRawHitFinder::produce(), vertex::FeatureVertexFinder::produce(), nnet::EmTrackClusterId2out::produce(), nnet::EmTrackClusterId::produce(), nnet::EmTrackMichelId::produce(), evd::HitSelector::SaveHits(), evd::RecoBaseDrawer::Seed2D(), SortByWire(), cluster::sortHitsByWire(), trkf::CosmicTrackerAlg::Track3D(), reco::RecobClusterParameters::UpdateParameters(), cluster::ClusterCrawlerAlg::VtxConstraint(), cluster::ClusterCrawlerAlg::VtxMatch(), geo::PlaneGeo::Wire(), and geo::PlaneGeo::WirePtr().


The documentation for this struct was generated from the following file: