Classes | Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Member Functions | Private Types | Private Member Functions | Static Private Member Functions | Private Attributes | List of all members
geo::GeometryCore Class Reference

Description of geometry of one entire detector. More...

#include <GeometryCore.h>

Inheritance diagram for geo::GeometryCore:
geo::Geometry

Classes

struct  Segment
 Simple class with two points (a pair with aliases). More...
 

Public Types

using instead = geo::Length_t
 
using Segment_t = Segment< DefaultPoint_t >
 
using CryostatList_t = GeometryData_t::CryostatList_t
 Type of list of cryostats. More...
 
using AuxDetList_t = GeometryData_t::AuxDetList_t
 Type of list of auxiliary detectors. More...
 
using cryostat_id_iterator = geo::cryostat_id_iterator
 Forward-iterator browsing all cryostat IDs in the detector. More...
 
using cryostat_iterator = geo::cryostat_iterator
 Forward-iterator browsing all cryostats in the detector. More...
 
using TPC_id_iterator = geo::TPC_id_iterator
 Forward-iterator browsing all TPC IDs in the detector. More...
 
using TPC_iterator = geo::TPC_iterator
 Forward-iterator browsing all TPCs in the detector. More...
 
using plane_id_iterator = geo::plane_id_iterator
 Forward-iterator browsing all plane IDs in the detector. More...
 
using plane_iterator = geo::plane_iterator
 Forward-iterator browsing all planes in the detector. More...
 
using wire_id_iterator = geo::wire_id_iterator
 Forward-iterator browsing all wire IDs in the detector. More...
 
using wire_iterator = geo::wire_iterator
 Forward-iterator browsing all wires in the detector. More...
 

Public Member Functions

 GeometryCore (fhicl::ParameterSet const &pset)
 Initialize geometry from a given configuration. More...
 
 ~GeometryCore ()
 Destructor. More...
 
 GeometryCore (GeometryCore const &)=delete
 
 GeometryCore (GeometryCore &&)=delete
 
GeometryCoreoperator= (GeometryCore const &)=delete
 
GeometryCoreoperator= (GeometryCore &&)=delete
 
double DefaultWiggle () const
 Returns the tolerance used in looking for positions. More...
 
std::string ROOTFile () const
 Returns the full directory path to the geometry file source. More...
 
std::string GDMLFile () const
 Returns the full directory path to the GDML file source. More...
 
std::vector< TGeoNode const * > FindAllVolumes (std::set< std::string > const &vol_names) const
 Returns all the nodes with volumes with any of the specified names. More...
 
std::vector< std::vector< TGeoNode const * > > FindAllVolumePaths (std::set< std::string > const &vol_names) const
 Returns paths of all nodes with volumes with the specified names. More...
 
TGeoMaterial const * Material (geo::Point_t const &point) const
 Returns the material at the specified position. More...
 
template<typename Stream >
void Print (Stream &&out, std::string indent=" ") const
 Prints geometry information with maximum verbosity. More...
 
std::string Info (std::string indent=" ") const
 Returns a string with complete geometry information. More...
 
template<typename GeoID >
GeoID GetBeginID () const
 Returns the ID of the first element of the detector. More...
 
template<typename GeoID >
GeoID GetNextID (GeoID const &id) const
 Returns the ID next to the specified one. More...
 
template<typename GeoID >
GeoID GetEndID () const
 Returns the (possibly invalid) ID after the last subelement of the detector. More...
 
template<typename GeoID , typename ContextID >
GeoID GetBeginID (ContextID const &id) const
 Returns the ID of the first subelement of the specified element. More...
 
template<typename GeoID , typename ContextID >
GeoID GetEndID (ContextID const &id) const
 Returns the (possibly invalid) ID after the last subelement of the specified element. More...
 
geo::CryostatGeo const * PositionToCryostatPtr (geo::Point_t const &point) const
 Returns the cryostat at specified location. More...
 
geo::CryostatID PositionToCryostatID (geo::Point_t const &point) const
 Returns the ID of the cryostat at specified location. More...
 
CryostatGeo const & PositionToCryostat (double const worldLoc[3], geo::CryostatID &cid) const
 Returns the cryostat at specified location. More...
 
CryostatGeo const & PositionToCryostat (double const worldLoc[3], unsigned int &cstat) const
 Returns the cryostat at specified location. More...
 
void GetBeginID (geo::CryostatID &id) const
 Initializes the specified ID with the ID of the first cryostat. More...
 
void GetEndID (geo::CryostatID &id) const
 Initializes the specified ID with the invalid ID after the last cryostat. More...
 
bool IncrementID (geo::CryostatID &id) const
 
cryostat_id_iterator begin_cryostat_id () const
 Returns an iterator pointing to the first cryostat ID. More...
 
cryostat_id_iterator end_cryostat_id () const
 Returns an iterator pointing after the last cryostat ID. More...
 
cryostat_iterator begin_cryostat () const
 Returns an iterator pointing to the first cryostat. More...
 
cryostat_iterator end_cryostat () const
 Returns an iterator pointing after the last cryostat. More...
 
IteratorBox< cryostat_id_iterator,&GeometryCore::begin_cryostat_id,&GeometryCore::end_cryostat_idIterateCryostatIDs () const
 Enables ranged-for loops on all cryostat IDs of the detector. More...
 
IteratorBox< cryostat_iterator,&GeometryCore::begin_cryostat,&GeometryCore::end_cryostatIterateCryostats () const
 Enables ranged-for loops on all cryostats of the detector. More...
 
void CryostatBoundaries (double *boundaries, geo::CryostatID const &cid) const
 Returns the boundaries of the specified cryostat. More...
 
void CryostatBoundaries (double *boundaries, unsigned int cstat=0) const
 Returns the boundaries of the specified cryostat. More...
 
bool HasTPC (geo::TPCID const &tpcid) const
 Returns whether we have the specified TPC. More...
 
bool HasElement (geo::TPCID const &tpcid) const
 Returns whether we have the specified TPC. More...
 
geo::TPCID FindTPCAtPosition (double const worldLoc[3]) const
 Returns the ID of the TPC at specified location. More...
 
geo::TPCGeo const * PositionToTPCptr (geo::Point_t const &point) const
 Returns the TPC at specified location. More...
 
TPCGeo const & PositionToTPC (double const worldLoc[3], unsigned int &tpc, unsigned int &cstat) const
 Returns the TPC at specified location. More...
 
TPCGeo const & PositionToTPC (double const worldLoc[3], TPCID &tpcid) const
 Returns the TPC at specified location. More...
 
geo::TPCID PositionToTPCID (geo::Point_t const &point) const
 Returns the ID of the TPC at specified location. More...
 
void GetBeginID (geo::TPCID &id) const
 Initializes the specified ID with the ID of the first TPC. More...
 
void GetEndID (geo::TPCID &id) const
 Initializes the specified ID with the invalid ID after the last TPC. More...
 
bool IncrementID (geo::TPCID &id) const
 
geo::TPCID GetBeginTPCID (geo::CryostatID const &id) const
 Returns the ID of the first TPC in the specified cryostat. More...
 
geo::TPCID GetEndTPCID (geo::CryostatID const &id) const
 
TPC_id_iterator begin_TPC_id () const
 Returns an iterator pointing to the first TPC ID in the detector. More...
 
TPC_id_iterator end_TPC_id () const
 Returns an iterator pointing after the last TPC ID in the detector. More...
 
TPC_id_iterator begin_TPC_id (geo::CryostatID const &cid) const
 
TPC_id_iterator end_TPC_id (geo::CryostatID const &cid) const
 
TPC_iterator begin_TPC () const
 Returns an iterator pointing to the first TPC in the detector. More...
 
TPC_iterator end_TPC () const
 Returns an iterator pointing after the last TPC in the detector. More...
 
TPC_iterator begin_TPC (geo::CryostatID const &cid) const
 Returns an iterator pointing to the first TPC in the detector. More...
 
TPC_iterator end_TPC (geo::CryostatID const &cid) const
 Returns an iterator pointing after the last TPC in the detector. More...
 
IteratorBox< TPC_id_iterator,&GeometryCore::begin_TPC_id,&GeometryCore::end_TPC_idIterateTPCIDs () const
 Enables ranged-for loops on all TPC IDs of the detector. More...
 
LocalIteratorBox< TPC_id_iterator, geo::CryostatID,&GeometryCore::begin_TPC_id,&GeometryCore::end_TPC_idIterateTPCIDs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all TPC IDs of the specified cryostat. More...
 
void IterateTPCIDs (geo::TPCID const &pid) const =delete
 IterateTPCIDs() is not supported on TPC IDs. More...
 
void IterateTPCIDs (geo::PlaneID const &pid) const =delete
 IterateTPCIDs() is not supported on plane IDs. More...
 
void IterateTPCIDs (geo::WireID const &pid) const =delete
 IterateTPCIDs() is not supported on wire IDs. More...
 
void IterateTPCIDs (readout::TPCsetID const &) const =delete
 IterateTPCIDs() is not supported on readout IDs. More...
 
void IterateTPCIDs (readout::ROPID const &) const =delete
 IterateTPCIDs() is not supported on readout IDs. More...
 
IteratorBox< TPC_iterator,&GeometryCore::begin_TPC,&GeometryCore::end_TPCIterateTPCs () const
 Enables ranged-for loops on all TPCs of the detector. More...
 
LocalIteratorBox< TPC_iterator, geo::CryostatID,&GeometryCore::begin_TPC,&GeometryCore::end_TPCIterateTPCs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all TPCs of the specified cryostat. More...
 
void IterateTPCs (geo::TPCID const &pid) const =delete
 IterateTPCs() is not supported on TPC IDs. More...
 
void IterateTPCs (geo::PlaneID const &pid) const =delete
 IterateTPCs() is not supported on plane IDs. More...
 
void IterateTPCs (geo::WireID const &pid) const =delete
 IterateTPCs() is not supported on wire IDs. More...
 
void IterateTPCs (readout::TPCsetID const &) const =delete
 IterateTPCs() is not supported on readout IDs. More...
 
void IterateTPCs (readout::ROPID const &) const =delete
 IterateTPCs() is not supported on readout IDs. More...
 
unsigned int Nviews () const
 Returns the number of views (different wire orientations) More...
 
std::set< PlaneID > const & PlaneIDs () const
 Returns a list of possible PlaneIDs in the detector. More...
 
void GetBeginID (geo::PlaneID &id) const
 Initializes the specified ID with the ID of the first plane. More...
 
void GetEndID (geo::PlaneID &id) const
 Initializes the specified ID with the invalid ID after the last plane. More...
 
bool IncrementID (geo::PlaneID &id) const
 
geo::PlaneID GetBeginPlaneID (geo::CryostatID const &id) const
 Returns the ID of the first plane of the specified cryostat. More...
 
geo::PlaneID GetEndPlaneID (geo::CryostatID const &id) const
 
geo::PlaneID GetBeginPlaneID (geo::TPCID const &id) const
 Returns the ID of the first plane of the specified TPC. More...
 
geo::PlaneID GetEndPlaneID (geo::TPCID const &id) const
 
plane_id_iterator begin_plane_id () const
 Returns an iterator pointing to the first plane ID in the detector. More...
 
plane_id_iterator end_plane_id () const
 Returns an iterator pointing after the last plane ID in the detector. More...
 
plane_id_iterator begin_plane_id (geo::CryostatID const &ID) const
 
plane_id_iterator end_plane_id (geo::CryostatID const &ID) const
 
plane_id_iterator begin_plane_id (geo::TPCID const &ID) const
 
plane_id_iterator end_plane_id (geo::TPCID const &ID) const
 
plane_iterator begin_plane () const
 Returns an iterator pointing to the first plane in the detector. More...
 
plane_iterator end_plane () const
 Returns an iterator pointing after the last plane in the detector. More...
 
plane_iterator begin_plane (geo::CryostatID const &ID) const
 
plane_iterator end_plane (geo::CryostatID const &ID) const
 
plane_iterator begin_plane (geo::TPCID const &ID) const
 Returns an iterator pointing to the first plane in the specified TPC. More...
 
plane_iterator end_plane (geo::TPCID const &ID) const
 Returns an iterator pointing after the last plane in the specified TPC. More...
 
IteratorBox< plane_id_iterator,&GeometryCore::begin_plane_id,&GeometryCore::end_plane_idIteratePlaneIDs () const
 Enables ranged-for loops on all plane IDs of the detector. More...
 
LocalIteratorBox< plane_id_iterator, geo::CryostatID,&GeometryCore::begin_plane_id,&GeometryCore::end_plane_idIteratePlaneIDs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all plane IDs of the specified cryostat. More...
 
LocalIteratorBox< plane_id_iterator, geo::TPCID,&GeometryCore::begin_plane_id,&GeometryCore::end_plane_idIteratePlaneIDs (geo::TPCID const &tid) const
 Enables ranged-for loops on all plane IDs of the specified TPC. More...
 
void IteratePlaneIDs (geo::PlaneID const &pid) const =delete
 IteratePlaneIDs() is not supported on plane IDs. More...
 
void IteratePlaneIDs (geo::WireID const &pid) const =delete
 IteratePlaneIDs() is not supported on wire IDs. More...
 
void IteratePlaneIDs (readout::TPCsetID const &) const =delete
 IteratePlaneIDs() is not supported on readout IDs. More...
 
void IteratePlaneIDs (readout::ROPID const &) const =delete
 IteratePlaneIDs() is not supported on readout IDs. More...
 
IteratorBox< plane_iterator,&GeometryCore::begin_plane,&GeometryCore::end_planeIteratePlanes () const
 Enables ranged-for loops on all planes of the detector. More...
 
LocalIteratorBox< plane_iterator, geo::CryostatID,&GeometryCore::begin_plane,&GeometryCore::end_planeIteratePlanes (geo::CryostatID const &cid) const
 Enables ranged-for loops on all planes of the specified cryostat. More...
 
LocalIteratorBox< plane_iterator, geo::TPCID,&GeometryCore::begin_plane,&GeometryCore::end_planeIteratePlanes (geo::TPCID const &tid) const
 Enables ranged-for loops on all planes of the specified TPC. More...
 
void IteratePlanes (geo::PlaneID const &pid) const =delete
 IteratePlanes() is not supported on plane IDs. More...
 
void IteratePlanes (geo::WireID const &pid) const =delete
 IteratePlanes() is not supported on wire IDs. More...
 
void IteratePlanes (readout::TPCsetID const &) const =delete
 IteratePlanes() is not supported on readout IDs. More...
 
void IteratePlanes (readout::ROPID const &) const =delete
 IteratePlanes() is not supported on readout IDs. More...
 
View_t View (geo::PlaneID const &pid) const
 Returns the view (wire orientation) on the channels of specified TPC plane. More...
 
SigType_t SignalType (geo::PlaneID const &pid) const
 Returns the type of signal on the channels of specified TPC plane. More...
 
void GetBeginID (geo::WireID &id) const
 Initializes the specified ID with the ID of the first wire. More...
 
void GetEndID (geo::WireID &id) const
 Initializes the specified ID with the invalid ID after the last wire. More...
 
bool IncrementID (geo::WireID &id) const
 
geo::WireID GetBeginWireID (geo::CryostatID const &id) const
 Returns the ID of the first wire in the specified cryostat. More...
 
geo::WireID GetEndWireID (geo::CryostatID const &id) const
 
geo::WireID GetBeginWireID (geo::TPCID const &id) const
 Returns the ID of the first wire of the specified TPC. More...
 
geo::WireID GetEndWireID (geo::TPCID const &id) const
 
geo::WireID GetBeginWireID (geo::PlaneID const &id) const
 Returns the ID of the first wire of the specified wire plane. More...
 
geo::WireID GetEndWireID (geo::PlaneID const &id) const
 
wire_id_iterator begin_wire_id () const
 Returns an iterator pointing to the first wire ID in the detector. More...
 
wire_id_iterator end_wire_id () const
 Returns an iterator pointing after the last wire ID in the detector. More...
 
wire_id_iterator begin_wire_id (geo::CryostatID const &id) const
 Returns an iterator pointing to the first wire ID in specified cryostat. More...
 
wire_id_iterator end_wire_id (geo::CryostatID const &id) const
 
wire_id_iterator begin_wire_id (geo::TPCID const &id) const
 Returns an iterator pointing to the first wire ID in specified TPC. More...
 
wire_id_iterator end_wire_id (geo::TPCID const &id) const
 Returns an iterator pointing after the last wire ID in specified TPC. More...
 
wire_id_iterator begin_wire_id (geo::PlaneID const &id) const
 Returns an iterator pointing to the first wire ID in specified plane. More...
 
wire_id_iterator end_wire_id (geo::PlaneID const &id) const
 Returns an iterator pointing after the last wire ID in specified plane. More...
 
wire_iterator begin_wire () const
 Returns an iterator pointing to the first wire in the detector. More...
 
wire_iterator end_wire () const
 Returns an iterator pointing after the last wire in the detector. More...
 
wire_iterator begin_wire (geo::CryostatID const &id) const
 Returns an iterator pointing to the first wire in specified cryostat. More...
 
wire_iterator end_wire (geo::CryostatID const &id) const
 Returns an iterator pointing after the last wire in specified cryostat. More...
 
wire_iterator begin_wire (geo::TPCID const &id) const
 Returns an iterator pointing to the first wire in specified TPC. More...
 
wire_iterator end_wire (geo::TPCID const &id) const
 Returns an iterator pointing after the last wire in specified TPC. More...
 
wire_iterator begin_wire (geo::PlaneID const &id) const
 Returns an iterator pointing to the first wire in specified plane. More...
 
wire_iterator end_wire (geo::PlaneID const &id) const
 Returns an iterator pointing after the last wire in specified plane. More...
 
IteratorBox< wire_id_iterator,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_idIterateWireIDs () const
 Enables ranged-for loops on all wire IDs of the detector. More...
 
LocalIteratorBox< wire_id_iterator, geo::CryostatID,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_idIterateWireIDs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all wire IDs of specified cryostat. More...
 
LocalIteratorBox< wire_id_iterator, geo::TPCID,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_idIterateWireIDs (geo::TPCID const &tid) const
 Enables ranged-for loops on all wire IDs of specified TPC. More...
 
LocalIteratorBox< wire_id_iterator, geo::PlaneID,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_idIterateWireIDs (geo::PlaneID const &pid) const
 Enables ranged-for loops on all wire IDs of specified wire plane. More...
 
void IterateWireIDs (geo::WireID const &pid) const =delete
 IterateWireIDs() is not supported on wire IDs. More...
 
void IterateWireIDs (readout::TPCsetID const &) const =delete
 IterateWireIDs() is not supported on readout IDs. More...
 
void IterateWireIDs (readout::ROPID const &) const =delete
 IterateWireIDs() is not supported on readout IDs. More...
 
IteratorBox< wire_iterator,&GeometryCore::begin_wire,&GeometryCore::end_wireIterateWires () const
 Enables ranged-for loops on all wires of the detector. More...
 
LocalIteratorBox< wire_iterator, geo::CryostatID,&GeometryCore::begin_wire,&GeometryCore::end_wireIterateWires (geo::CryostatID const &cid) const
 Enables ranged-for loops on all wires of specified cryostat. More...
 
LocalIteratorBox< wire_iterator, geo::TPCID,&GeometryCore::begin_wire,&GeometryCore::end_wireIterateWires (geo::TPCID const &tid) const
 Enables ranged-for loops on all wires of specified TPC. More...
 
LocalIteratorBox< wire_iterator, geo::PlaneID,&GeometryCore::begin_wire,&GeometryCore::end_wireIterateWires (geo::PlaneID const &tid) const
 Enables ranged-for loops on all wires of specified wire plane. More...
 
void IterateWires (geo::WireID const &pid) const =delete
 IterateWires() is not supported on wire IDs. More...
 
void IterateWires (readout::TPCsetID const &) const =delete
 IterateWires() is not supported on readout IDs. More...
 
void IterateWires (readout::ROPID const &) const =delete
 IterateWires() is not supported on readout IDs. More...
 
geo::Length_t WirePitch (geo::View_t view) const
 Returns the distance between two wires in the specified view. More...
 
geo::WireID NearestWireID (geo::Point_t const &point, geo::PlaneID const &planeid) const
 Returns the ID of wire closest to position in the specified TPC. More...
 
geo::WireID::WireID_t NearestWire (geo::Point_t const &point, geo::PlaneID const &planeid) const
 Returns the index of wire closest to position in the specified TPC. More...
 
geo::Length_t WireCoordinate (double YPos, double ZPos, geo::PlaneID const &planeid) const
 Returns the index of the nearest wire to the specified position. More...
 
geo::Length_t WireCoordinate (double YPos, double ZPos, unsigned int PlaneNo, unsigned int TPCNo, unsigned int cstat) const
 Returns the index of the nearest wire to the specified position. More...
 
bool IntersectLines (double A_start_x, double A_start_y, double A_end_x, double A_end_y, double B_start_x, double B_start_y, double B_end_x, double B_end_y, double &x, double &y) const
 Computes the intersection between two lines on a plane. More...
 
bool IntersectSegments (double A_start_x, double A_start_y, double A_end_x, double A_end_y, double B_start_x, double B_start_y, double B_end_x, double B_end_y, double &x, double &y) const
 Computes the intersection between two segments on a plane. More...
 
bool IntersectionPoint (geo::WireID const &wid1, geo::WireID const &wid2, double &y, double &z) const
 Returns the intersection point of two wires. More...
 
bool IntersectionPoint (unsigned int wire1, unsigned int wire2, unsigned int plane1, unsigned int plane2, unsigned int cstat, unsigned int tpc, double &y, double &z) const
 Returns the intersection point of two wires. More...
 
geo::PlaneID ThirdPlane (geo::PlaneID const &pid1, geo::PlaneID const &pid2) const
 Returns the plane that is not in the specified arguments. More...
 
double ThirdPlaneSlope (geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
 Returns the slope on the third plane, given it in the other two. More...
 
double ThirdPlaneSlope (geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2) const
 Returns the slope on the third plane, given it in the other two. More...
 
double ThirdPlane_dTdW (geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
 Returns dT/dW on the third plane, given it in the other two. More...
 
double ThirdPlane_dTdW (geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2) const
 Returns dT/dW on the third plane, given it in the other two. More...
 
std::string OpDetGeoName (unsigned int c=0) const
 Returns gdml string which gives sensitive opdet name. More...
 
SigType_t SignalType (raw::ChannelID_t const channel) const
 Returns the type of signal on the specified TPC channel. More...
 
View_t View (raw::ChannelID_t const channel) const
 Returns the view (wire orientation) on the specified TPC channel. More...
 
std::vector< geo::WireIDChannelToWire (raw::ChannelID_t const channel) const
 Returns a list of wires connected to the specified TPC channel. More...
 
readout::ROPID ChannelToROP (raw::ChannelID_t channel) const
 
raw::ChannelID_t NearestChannel (geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
 Returns the ID of the channel nearest to the specified position. More...
 
bool ChannelsIntersect (raw::ChannelID_t c1, raw::ChannelID_t c2, double &y, double &z) const
 Returns an intersection point of two channels. More...
 
unsigned int MaxTPCsets () const
 Returns the largest number of TPC sets any cryostat in the detector has. More...
 
template<typename T >
readout::TPCsetDataContainer< T > makeTPCsetData () const
 Returns a container with one entry per TPC set. More...
 
template<typename T >
readout::TPCsetDataContainer< T > makeTPCsetData (T const &defValue) const
 Returns a container with one entry per TPC set. More...
 
bool HasTPCset (readout::TPCsetID const &tpcsetid) const
 
bool HasElement (readout::TPCsetID const &tpcsetid) const
 Returns whether we have the specified TPC set. More...
 
readout::TPCsetID FindTPCsetAtPosition (double const worldLoc[3]) const
 Returns the ID of the TPC set at specified location. More...
 
readout::TPCsetID TPCtoTPCset (geo::TPCID const &tpcid) const
 Returns the ID of the TPC set tpcid belongs to. More...
 
std::vector< geo::TPCIDTPCsetToTPCs (readout::TPCsetID const &tpcsetid) const
 Returns a list of ID of TPCs belonging to the specified TPC set. More...
 
void GetBeginID (readout::TPCsetID &id) const
 Initializes the specified ID with the ID of the first TPC set. More...
 
void GetEndID (readout::TPCsetID &id) const
 Initializes the specified ID with the invalid ID after the last TPC set. More...
 
bool IncrementID (readout::TPCsetID &id) const
 
readout::TPCsetID GetBeginTPCsetID (geo::CryostatID const &id) const
 Returns the ID of the first TPC set in the specified cryostat. More...
 
readout::TPCsetID GetEndTPCsetID (geo::CryostatID const &id) const
 
TPCset_id_iterator begin_TPCset_id () const
 Returns an iterator pointing to the first TPC set ID in the detector. More...
 
TPCset_id_iterator end_TPCset_id () const
 Returns an iterator pointing after the last TPC set ID in the detector. More...
 
TPCset_id_iterator begin_TPCset_id (geo::CryostatID const &cid) const
 
TPCset_id_iterator end_TPCset_id (geo::CryostatID const &cid) const
 
IteratorBox< TPCset_id_iterator,&GeometryCore::begin_TPCset_id,&GeometryCore::end_TPCset_idIterateTPCsetIDs () const
 Enables ranged-for loops on all TPC set IDs of the detector. More...
 
LocalIteratorBox< TPCset_id_iterator, geo::CryostatID,&GeometryCore::begin_TPCset_id,&GeometryCore::end_TPCset_idIterateTPCsetIDs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all TPC set IDs of the specified cryostat. More...
 
unsigned int MaxROPs () const
 Returns the largest number of ROPs a TPC set in the detector has. More...
 
template<typename T >
readout::ROPDataContainer< T > makeROPdata () const
 Returns a container with one entry per readout plane. More...
 
template<typename T >
readout::ROPDataContainer< T > makeROPdata (T const &defValue) const
 Returns a container with one entry per readout plane. More...
 
bool HasROP (readout::ROPID const &ropid) const
 
bool HasElement (readout::ROPID const &ropid) const
 
readout::ROPID WirePlaneToROP (geo::PlaneID const &planeid) const
 Returns the ID of the ROP planeid belongs to. More...
 
std::vector< geo::PlaneIDROPtoWirePlanes (readout::ROPID const &ropid) const
 Returns a list of ID of planes belonging to the specified ROP. More...
 
std::vector< geo::TPCIDROPtoTPCs (readout::ROPID const &ropid) const
 Returns a list of ID of TPCs the specified ROP spans. More...
 
raw::ChannelID_t FirstChannelInROP (readout::ROPID const &ropid) const
 Returns the ID of the first channel in the specified readout plane. More...
 
void GetBeginID (readout::ROPID &id) const
 Initializes the specified ID with the ID of the first readout plane. More...
 
void GetEndID (readout::ROPID &id) const
 Initializes the specified ID with the invalid ID after the last ROP. More...
 
bool IncrementID (readout::ROPID &id) const
 
readout::ROPID GetBeginROPID (geo::CryostatID const &id) const
 Returns the ID of the first readout plane of the specified cryostat. More...
 
readout::ROPID GetEndROPID (geo::CryostatID const &id) const
 
readout::ROPID GetBeginROPID (readout::TPCsetID const &id) const
 Returns the ID of the first readout plane of the specified TPC set. More...
 
readout::ROPID GetEndROPID (readout::TPCsetID const &id) const
 
ROP_id_iterator begin_ROP_id () const
 Returns an iterator pointing to the first ROP ID in the detector. More...
 
ROP_id_iterator end_ROP_id () const
 Returns an iterator pointing after the last ROP ID in the detector. More...
 
ROP_id_iterator begin_ROP_id (geo::CryostatID const &ID) const
 
ROP_id_iterator end_ROP_id (geo::CryostatID const &ID) const
 
ROP_id_iterator begin_ROP_id (readout::TPCsetID const &ID) const
 
ROP_id_iterator end_ROP_id (readout::TPCsetID const &ID) const
 
IteratorBox< ROP_id_iterator,&GeometryCore::begin_ROP_id,&GeometryCore::end_ROP_idIterateROPIDs () const
 Enables ranged-for loops on all readout plane IDs of the detector. More...
 
LocalIteratorBox< ROP_id_iterator, geo::CryostatID,&GeometryCore::begin_ROP_id,&GeometryCore::end_ROP_idIterateROPIDs (geo::CryostatID const &cid) const
 Enables ranged-for loops on all readout plane IDs of the specified cryostat. More...
 
LocalIteratorBox< ROP_id_iterator, readout::TPCsetID,&GeometryCore::begin_ROP_id,&GeometryCore::end_ROP_idIterateROPIDs (readout::TPCsetID const &sid) const
 Enables ranged-for loops on all readout plane IDs of the specified TPC set. More...
 
geo::View_t View (readout::ROPID const &ropid) const
 Returns the view of the channels in the specified readout plane. More...
 
geo::SigType_t SignalType (readout::ROPID const &ropid) const
 Returns the type of signal of channels in specified readout plane. More...
 
bool ValueInRange (double value, double min, double max) const
 Returns whether a value is within the specified range. More...
 
template<typename Point >
geo::GeometryCore::Segment< PointWireEndPoints (geo::WireID const &wireid) const
 
Detector information
std::string DetectorName () const
 Returns a string with the name of the detector, as configured. More...
 
TGeoVolume const * WorldVolume () const
 Returns a pointer to the world volume. More...
 
void WorldBox (double *xlo, double *xhi, double *ylo, double *yhi, double *zlo, double *zhi) const
 Fills the arguments with the boundaries of the world. More...
 
geo::BoxBoundedGeo WorldBox () const
 
geo::Length_t SurfaceY () const
 The position of the detector respect to earth surface. More...
 
TGeoManager * ROOTGeoManager () const
 Access to the ROOT geometry description manager. More...
 
const std::string GetWorldVolumeName () const
 Return the name of the world volume (needed by Geant4 simulation) More...
 
geo::BoxBoundedGeo DetectorEnclosureBox (std::string const &name="volDetEnclosure") const
 
std::string VolumeName (geo::Point_t const &point) const
 Returns the name of the deepest volume containing specified point. More...
 
std::string VolumeName (TVector3 const &point) const
 
std::string MaterialName (TVector3 const &point) const
 Name of the deepest material containing the point xyz. More...
 
std::string MaterialName (geo::Point_t const &point) const
 
double TotalMass () const
 Returns the total mass [kg] of the specified volume (default: world). More...
 
double TotalMass (std::string vol) const
 
double MassBetweenPoints (geo::Point_t const &p1, geo::Point_t const &p2) const
 Returns the column density between two points. More...
 
double MassBetweenPoints (double *p1, double *p2) const
 
Cryostat access and information
unsigned int Ncryostats () const
 Returns the number of cryostats in the detector. More...
 
unsigned int NElements () const
 
unsigned int NSiblingElements (geo::CryostatID const &) const
 
bool HasCryostat (geo::CryostatID const &cryoid) const
 Returns whether we have the specified cryostat. More...
 
bool HasElement (geo::CryostatID const &cryoid) const
 
CryostatGeo const & Cryostat (geo::CryostatID const &cryoid) const
 Returns the specified cryostat. More...
 
CryostatGeo const & Cryostat (unsigned int const cstat=0) const
 
CryostatGeo const & GetElement (geo::CryostatID const &cryoid) const
 
CryostatGeo const * CryostatPtr (geo::CryostatID const &cryoid) const
 Returns the specified cryostat. More...
 
CryostatGeo const * GetElementPtr (geo::CryostatID const &cryoid) const
 
geo::CryostatID::CryostatID_t FindCryostatAtPosition (geo::Point_t const &worldLoc) const
 Returns the index of the cryostat at specified location. More...
 
geo::CryostatID::CryostatID_t FindCryostatAtPosition (double const worldLoc[3]) const
 
CryostatGeo const & PositionToCryostat (geo::Point_t const &point) const
 Returns the cryostat at specified location. More...
 
CryostatGeo const & PositionToCryostat (double const point[3]) const
 
geo::Length_t CryostatHalfWidth (geo::CryostatID const &cid) const
 Returns the half width of the cryostat (x direction) More...
 
geo::Length_t CryostatHalfWidth (unsigned int cstat=0) const
 
geo::Length_t CryostatHalfHeight (geo::CryostatID const &cid) const
 Returns the height of the cryostat (y direction) More...
 
geo::Length_t CryostatHalfHeight (unsigned int cstat=0) const
 
geo::Length_t CryostatLength (geo::CryostatID const &cid) const
 Returns the length of the cryostat (z direction) More...
 
geo::Length_t CryostatLength (unsigned int cstat=0) const
 
std::string GetCryostatVolumeName (geo::CryostatID const &cid) const
 Return the name of LAr TPC volume. More...
 
std::string GetCryostatVolumeName (unsigned int const cstat=0) const
 
TPC access and information
unsigned int NTPC (unsigned int cstat=0) const
 Returns the total number of TPCs in the specified cryostat. More...
 
unsigned int MaxTPCs () const
 Returns the largest number of TPCs a cryostat in the detector has. More...
 
unsigned int TotalNTPC () const
 Returns the total number of TPCs in the detector. More...
 
template<typename T >
geo::TPCDataContainer< T > makeTPCData () const
 Returns a container with one entry per TPC. More...
 
template<typename T >
geo::TPCDataContainer< T > makeTPCData (T const &defValue) const
 Returns a container with one entry per TPC. More...
 
unsigned int NTPC (geo::CryostatID const &cryoid) const
 Returns the total number of TPCs in the specified cryostat. More...
 
unsigned int NElements (geo::CryostatID const &cryoid) const
 
unsigned int NSiblingElements (geo::TPCID const &tpcid) const
 
TPCGeo const & TPC (unsigned int const tpc=0, unsigned int const cstat=0) const
 Returns the specified TPC. More...
 
TPCGeo const & TPC (geo::TPCID const &tpcid) const
 
TPCGeo const & GetElement (geo::TPCID const &tpcid) const
 
TPCGeo const * TPCPtr (geo::TPCID const &tpcid) const
 Returns the specified TPC. More...
 
TPCGeo const * GetElementPtr (geo::TPCID const &tpcid) const
 
geo::TPCID FindTPCAtPosition (geo::Point_t const &point) const
 Returns the ID of the TPC at specified location. More...
 
geo::TPCID FindTPCAtPosition (TVector3 const &point) const
 
geo::TPCGeo const & PositionToTPC (geo::Point_t const &point) const
 Returns the TPC at specified location. More...
 
TPCGeo const & PositionToTPC (double const point[3]) const
 
geo::Length_t DetHalfWidth (geo::TPCID const &tpcid) const
 Returns the half width of the active volume of the specified TPC. More...
 
geo::Length_t DetHalfWidth (unsigned int tpc=0, unsigned int cstat=0) const
 
geo::Length_t DetHalfHeight (geo::TPCID const &tpcid) const
 Returns the half height of the active volume of the specified TPC. More...
 
geo::Length_t DetHalfHeight (unsigned int tpc=0, unsigned int cstat=0) const
 
geo::Length_t DetLength (geo::TPCID const &tpcid) const
 Returns the length of the active volume of the specified TPC. More...
 
geo::Length_t DetLength (unsigned int tpc=0, unsigned int cstat=0) const
 
template<typename Point >
Point GetTPCFrontFaceCenter (geo::TPCID const &tpcid) const
 Returns the center of side of the detector facing the beam. More...
 
DefaultPoint_t GetTPCFrontFaceCenter (geo::TPCID const &tpcid) const
 
template<typename Point >
Point GetTPCFrontFaceCenter (unsigned int tpc=0, unsigned int cstat=0) const
 Returns the center of side of the detector facing the beam. More...
 
DefaultPoint_t GetTPCFrontFaceCenter (unsigned int tpc=0, unsigned int cstat=0) const
 
std::string GetLArTPCVolumeName (geo::TPCID const &tpcid) const
 Return the name of specified LAr TPC volume. More...
 
std::string GetLArTPCVolumeName (unsigned int const tpc=0, unsigned int const cstat=0) const
 
Plane access and information
unsigned int Nplanes (unsigned int tpc=0, unsigned int cstat=0) const
 Returns the total number of wire planes in the specified TPC. More...
 
unsigned int MaxPlanes () const
 Returns the largest number of planes among all TPCs in this detector. More...
 
template<typename T >
geo::PlaneDataContainer< T > makePlaneData () const
 Returns a container with one entry per wire plane. More...
 
template<typename T >
geo::PlaneDataContainer< T > makePlaneData (T const &defValue) const
 Returns a container with one entry per wire plane. More...
 
unsigned int Nplanes (geo::TPCID const &tpcid) const
 Returns the total number of planes in the specified TPC. More...
 
unsigned int NElements (geo::TPCID const &tpcid) const
 
unsigned int NSiblingElements (geo::PlaneID const &planeid) const
 
bool HasPlane (geo::PlaneID const &planeid) const
 Returns whether we have the specified plane. More...
 
bool HasElement (geo::PlaneID const &planeid) const
 
PlaneGeo const & Plane (unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
 Returns the specified wire. More...
 
PlaneGeo const & Plane (geo::PlaneID const &planeid) const
 
PlaneGeo const & GetElement (geo::PlaneID const &planeid) const
 
PlaneGeo const * PlanePtr (geo::PlaneID const &planeid) const
 Returns the specified plane. More...
 
PlaneGeo const * GetElementPtr (geo::PlaneID const &planeid) const
 
geo::Length_t PlanePitch (geo::TPCID const &tpcid, geo::PlaneID::PlaneID_t p1=0, geo::PlaneID::PlaneID_t p2=1) const
 Returns the distance between two planes. More...
 
geo::Length_t PlanePitch (geo::PlaneID const &pid1, geo::PlaneID const &pid2) const
 
geo::Length_t PlanePitch (unsigned int p1=0, unsigned int p2=1, unsigned int tpc=0, unsigned int cstat=0) const
 
Wire access and information
unsigned int Nwires (unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
 Returns the total number of wires in the specified plane. More...
 
unsigned int Nwires (geo::PlaneID const &planeid) const
 Returns the total number of wires in the specified plane. More...
 
unsigned int NElements (geo::PlaneID const &planeid) const
 
unsigned int NSiblingElements (geo::WireID const &wireid) const
 
unsigned int MaxWires () const
 Returns the largest number of wires among all planes in this detector. More...
 
bool HasWire (geo::WireID const &wireid) const
 Returns whether we have the specified wire. More...
 
bool HasElement (geo::WireID const &wireid) const
 
WireGeo const * WirePtr (geo::WireID const &wireid) const
 Returns the specified wire. More...
 
WireGeo const * GetElementPtr (geo::WireID const &wireid) const
 
WireGeo const & Wire (geo::WireID const &wireid) const
 Returns the specified wire. More...
 
WireGeo const & WireIDToWireGeo (geo::WireID const &wireid) const
 
WireGeo const & GetElement (geo::WireID const &wireid) const
 
geo::Length_t WirePitch (geo::PlaneID const &planeid) const
 Returns the distance between two consecutive wires. More...
 
geo::Length_t WirePitch (unsigned int plane=0, unsigned int tpc=0, unsigned int cstat=0) const
 
double WireAngleToVertical (geo::View_t view, geo::TPCID const &tpcid) const
 Returns the angle of the wires in the specified view from vertical. More...
 
double WireAngleToVertical (geo::View_t view, int TPC=0, int Cryo=0) const
 
Wire geometry queries

Please note the differences between functions: ChannelsIntersect(), WireIDsIntersect() and IntersectionPoint() all calculate wires intersection using the same equation. ChannelsIntersect() and WireIdsIntersect() will return true if the two wires cross, return false if they don't. IntersectionPoint() does not check if the two wires cross.

void WireEndPoints (geo::WireID const &wireid, double *xyzStart, double *xyzEnd) const
 Fills two arrays with the coordinates of the wire end points. More...
 
void WireEndPoints (unsigned int cstat, unsigned int tpc, unsigned int plane, unsigned int wire, double *xyzStart, double *xyzEnd) const
 Fills two arrays with the coordinates of the wire end points. More...
 
template<typename Point >
Segment< PointWireEndPoints (geo::WireID const &wireID) const
 Returns a segment whose ends are the wire end points. More...
 
Segment< DefaultPoint_tWireEndPoints (geo::WireID const &wireID) const
 
geo::WireID NearestWireID (const double point[3], geo::PlaneID const &planeid) const
 Returns the ID of wire closest to position in the specified TPC. More...
 
geo::WireID NearestWireID (std::vector< double > const &point, geo::PlaneID const &planeid) const
 
geo::WireID NearestWireID (const TVector3 &point, geo::PlaneID const &planeid) const
 
geo::WireID NearestWireID (const double point[3], unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
geo::WireID NearestWireID (std::vector< double > const &point, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
geo::WireID NearestWireID (const TVector3 &point, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
geo::WireID NearestWireID (geo::Point_t const &point, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
unsigned int NearestWire (const double worldLoc[3], geo::PlaneID const &planeid) const
 Returns the index of wire closest to position in the specified TPC. More...
 
unsigned int NearestWire (std::vector< double > const &worldLoc, geo::PlaneID const &planeid) const
 
unsigned int NearestWire (const TVector3 &worldLoc, geo::PlaneID const &planeid) const
 
unsigned int NearestWire (const double worldLoc[3], unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
unsigned int NearestWire (std::vector< double > const &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
unsigned int NearestWire (const TVector3 &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
unsigned int NearestWire (geo::Point_t const &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
geo::Length_t WireCoordinate (geo::Point_t const &pos, geo::PlaneID const &planeid) const
 Returns the index of the nearest wire to the specified position. More...
 
geo::Length_t WireCoordinate (TVector3 const &pos, geo::PlaneID const &planeid) const
 
bool WireIDsIntersect (WireID const &wid1, WireID const &wid2, geo::Point_t &intersection) const
 Computes the intersection between two wires. More...
 
bool WireIDsIntersect (WireID const &wid1, WireID const &wid2, TVector3 &intersection) const
 
bool WireIDsIntersect (WireID const &wid1, WireID const &wid2, WireIDIntersection &widIntersect) const
 Computes the intersection between two wires. More...
 
double ThirdPlaneSlope (geo::PlaneID::PlaneID_t plane1, double slope1, geo::PlaneID::PlaneID_t plane2, double slope2, geo::TPCID const &tpcid) const
 Returns the slope on the third plane, given it in the other two. More...
 
double ThirdPlaneSlope (unsigned int plane1, double slope1, unsigned int plane2, double slope2, unsigned int tpc, unsigned int cstat) const
 
Optical detector geometry access and information

See also
optical detector channel information

There are a number of ways to identify an optical detector or channel:

  • geometric:
    • cryostat (e.g. geo::CryostatID) and relative optical detector number within it
    • unique optical detector number
  • readout:
    • optical detector channel
    • "hardware" channel

And they all should be better documented!

unsigned int NOpDets () const
 Number of OpDets in the whole detector. More...
 
OpDetGeo const & OpDetGeoFromOpChannel (unsigned int OpChannel) const
 Returns the geo::OpDetGeo object for the given channel number. More...
 
OpDetGeo const & OpDetGeoFromOpDet (unsigned int OpDet) const
 Returns the geo::OpDetGeo object for the given detector number. More...
 
unsigned int GetClosestOpDet (geo::Point_t const &point) const
 Find the nearest OpChannel to some point. More...
 
unsigned int GetClosestOpDet (double const *point) const
 
Auxiliary detectors access and information
unsigned int NAuxDets () const
 Returns the number of auxiliary detectors. More...
 
unsigned int NAuxDetSensitive (size_t const &aid) const
 Returns the number of sensitive components of auxiliary detector. More...
 
AuxDetGeo const & AuxDet (unsigned int const ad=0) const
 Returns the specified auxiliary detector. More...
 
unsigned int FindAuxDetAtPosition (double const worldLoc[3], double tolerance=0) const
 Returns the index of the auxiliary detector at specified location. More...
 
unsigned int FindAuxDetAtPosition (geo::Point_t const &point, double tolerance=0) const
 Returns the index of the auxiliary detector at specified location. More...
 
void FindAuxDetSensitiveAtPosition (geo::Point_t const &point, std::size_t &adg, std::size_t &sv, double tolerance=0) const
 Fills the indices of the sensitive auxiliary detector at location. More...
 
void FindAuxDetSensitiveAtPosition (double const worldLoc[3], size_t &adg, size_t &sv, double tolerance=0) const
 Fills the indices of the sensitive auxiliary detector at location. More...
 
AuxDetGeo const & PositionToAuxDet (geo::Point_t const &point, unsigned int &ad, double tolerance=0) const
 Returns the auxiliary detector at specified location. More...
 
AuxDetGeo const & PositionToAuxDet (double const worldLoc[3], unsigned int &ad, double tolerance=0) const
 Returns the auxiliary detector at specified location. More...
 
const AuxDetSensitiveGeoPositionToAuxDetSensitive (geo::Point_t const &point, size_t &ad, size_t &sv, double tolerance=0) const
 Returns the auxiliary detector at specified location. More...
 
const AuxDetSensitiveGeoPositionToAuxDetSensitive (double const worldLoc[3], size_t &ad, size_t &sv, double tolerance=0) const
 Returns the auxiliary detector at specified location. More...
 
const AuxDetGeoChannelToAuxDet (std::string const &auxDetName, uint32_t const &channel) const
 
const AuxDetSensitiveGeoChannelToAuxDetSensitive (std::string const &auxDetName, uint32_t const &channel) const
 
TPC readout channels and views
unsigned int Nchannels () const
 Returns the number of TPC readout channels in the detector. More...
 
unsigned int Nchannels (readout::ROPID const &ropid) const
 Returns the number of channels in the specified ROP. More...
 
std::vector< raw::ChannelID_tChannelsInTPCs () const
 Returns an std::vector<ChannelID_t> in all TPCs in a TPCSet. More...
 
std::set< geo::View_t > const & Views () const
 Returns a list of possible views in the detector. More...
 
bool HasChannel (raw::ChannelID_t channel) const
 Returns whether the specified channel exists and is valid. More...
 
raw::ChannelID_t PlaneWireToChannel (WireID const &wireid) const
 Returns the ID of the TPC channel connected to the specified wire. More...
 
raw::ChannelID_t PlaneWireToChannel (unsigned int const plane, unsigned int const wire, unsigned int const tpc=0, unsigned int const cstat=0) const
 
raw::ChannelID_t NearestChannel (const double worldLoc[3], geo::PlaneID const &planeid) const
 Returns the ID of the channel nearest to the specified position. More...
 
raw::ChannelID_t NearestChannel (std::vector< double > const &worldLoc, geo::PlaneID const &planeid) const
 
raw::ChannelID_t NearestChannel (const TVector3 &worldLoc, geo::PlaneID const &planeid) const
 
raw::ChannelID_t NearestChannel (const double worldLoc[3], unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
raw::ChannelID_t NearestChannel (std::vector< double > const &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
raw::ChannelID_t NearestChannel (const TVector3 &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
raw::ChannelID_t NearestChannel (geo::Point_t const &worldLoc, unsigned int const PlaneNo, unsigned int const TPCNo=0, unsigned int const cstat=0) const
 
TPC set information
unsigned int NTPCsets (readout::CryostatID const &cryoid) const
 Returns the total number of TPC sets in the specified cryostat. More...
 
unsigned int NSiblingElements (readout::TPCsetID const &tpcsetid) const
 
Readout plane information
unsigned int NROPs (readout::TPCsetID const &tpcsetid) const
 Returns the total number of ROP in the specified TPC set. More...
 
unsigned int NSiblingElements (readout::ROPID const &ropid) const
 
Optical readout channels
unsigned int NOpChannels () const
 Number of electronics channels for all the optical detectors. More...
 
unsigned int MaxOpChannel () const
 Largest optical channel number. More...
 
unsigned int NOpHardwareChannels (int opDet) const
 
bool IsValidOpChannel (int opChannel) const
 Is this a valid OpChannel number? More...
 
unsigned int OpChannel (int detNum, int hardwareChannel) const
 Convert detector number and hardware channel to unique channel. More...
 
unsigned int OpDetFromOpChannel (int opChannel) const
 Convert unique channel to detector number. More...
 
unsigned int HardwareChannelFromOpChannel (int opChannel) const
 Convert unique channel to hardware channel. More...
 
unsigned int OpDetFromCryo (unsigned int o, unsigned int c) const
 Get unique opdet number from cryo and internal count. More...
 
Geometry initialization
void LoadGeometryFile (std::string gdmlfile, std::string rootfile, geo::GeometryBuilder &builder, bool bForceReload=false)
 Loads the geometry information from the specified files. More...
 
void LoadGeometryFile (std::string gdmlfile, std::string rootfile, bool bForceReload=false)
 Loads the geometry information from the specified files. More...
 
void ApplyChannelMap (std::unique_ptr< geo::ChannelMapAlg > pChannelMap)
 Initializes the geometry to work with this channel map. More...
 

Static Public Member Functions

static double ComputeThirdPlaneSlope (double angle1, double slope1, double angle2, double slope2, double angle_target)
 Returns the slope on the third plane, given it in the other two. More...
 
static double ComputeThirdPlane_dTdW (double angle1, double pitch1, double dTdW1, double angle2, double pitch2, double dTdW2, double angle_target, double pitch_target)
 Returns the slope on the third plane, given it in the other two. More...
 

Static Public Attributes

static constexpr std::size_t MaxWireDepthInGDML = 20U
 
static lar::util::RealComparisons< geo::Length_tcoordIs { 1e-8 }
 Value of tolerance for equality comparisons. More...
 

Protected Member Functions

void SetDetectorName (std::string const &new_name)
 Sets the detector name. More...
 
geo::ChannelMapAlg const * ChannelMap () const
 Returns the object handling the channel map. More...
 
CryostatList_tCryostats ()
 Return the internal cryostat list. More...
 
CryostatList_t const & Cryostats () const
 
AuxDetList_tAuxDets ()
 Return the interfal auxiliary detectors list. More...
 
AuxDetList_t const & AuxDets () const
 

Private Types

using DefaultVector_t = TVector3
 Default template argument. More...
 
using DefaultPoint_t = TVector3
 Default template argument. More...
 

Private Member Functions

std::vector< TGeoNode const * > FindDetectorEnclosure (std::string const &name="volDetEnclosure") const
 
bool FindFirstVolume (std::string const &name, std::vector< const TGeoNode * > &path) const
 
void BuildGeometry (geo::GeometryBuilder &builder)
 
bool WireIDIntersectionCheck (const geo::WireID &wid1, const geo::WireID &wid2) const
 Wire ID check for WireIDsIntersect methods. More...
 
void SortGeometry (geo::GeoObjectSorter const &sorter)
 Runs the sorting of geometry with the sorter provided by channel mapping. More...
 
void UpdateAfterSorting ()
 Performs all the updates needed after sorting. More...
 
void ClearGeometry ()
 Deletes the detector geometry structures. More...
 

Static Private Member Functions

static bool PointWithinSegments (double A_start_x, double A_start_y, double A_end_x, double A_end_y, double B_start_x, double B_start_y, double B_end_x, double B_end_y, double x, double y)
 Returns whether x and y are within both specified ranges (A and B). More...
 
static void CheckIndependentPlanesOnSameTPC (geo::PlaneID const &pid1, geo::PlaneID const &pid2, const char *caller)
 

Private Attributes

GeometryData_t fGeoData
 The detector description data. More...
 
double fSurfaceY
 The point where air meets earth for this detector. More...
 
std::string fDetectorName
 Name of the detector. More...
 
std::string fGDMLfile
 path to geometry file used for Geant4 simulation More...
 
std::string fROOTfile
 path to geometry file for geometry in GeometryCore More...
 
double fMinWireZDist
 
double fPositionWiggle
 accounting for rounding errors when testing positions More...
 
fhicl::ParameterSet fBuilderParameters
 
std::unique_ptr< const geo::ChannelMapAlgfChannelMapAlg
 Object containing the channel to wire mapping. More...
 
std::set< geo::View_tallViews
 All views in the detector. More...
 

Detailed Description

Description of geometry of one entire detector.


Note
All lengths are specified in centimetres

How to correctly instantiate a GeometryCore object

Instantiation is a multi-step procedure:

  1. construct a GeometryCore object (the "service provider"), with the full configuration; at this step, configuration is just stored
  2. load a geometry with GeometryCore::LoadGeometryFile(); this loads the detector geometry information
  3. prepare a channel map algorithm object (might use for example GeometryCore::DetectorName() or the detector geometry from the newly created object, but any use of channel mapping related functions is forbidden and it would yield undefined behaviour (expected to be catastrophic)
  4. acquire the channel mapping algorithm with GeometryCore::ApplyChannelMap().

Step 3 (creation of the channel mapping algorithm object) can be performed at any time before step 4, provided that no GeometryCore instance is needed for it.

Configuration parameters

Definition at line 1468 of file GeometryCore.h.

Member Typedef Documentation

Type of list of auxiliary detectors.

Definition at line 1505 of file GeometryCore.h.

Forward-iterator browsing all cryostat IDs in the detector.

Usage example with a while loop:

iCryostat = geom->begin_cryostat_id(), cend = geom->end_cryostat_id();
while (iCryostat != cend) {
std::cout << "Cryo: " << iCryostat->Cryostat << std::endl;
const geo::CryostatGeo* pCryo = iCryostat.get();
++iCryostat;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateCryostatIDs() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_cryostat_id() on every check.

Definition at line 1536 of file GeometryCore.h.

Forward-iterator browsing all cryostats in the detector.

Usage example with a while loop:

iCryostat = geom->begin_cryostat(), cend = geom->end_cryostat();
while (iCryostat != cend) {
std::cout << "Cryo: " << iCryostat.ID() << std::endl;
geo::CryostatGeo const& Cryo = *iCryostat;
++iCryostat;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateCryostats() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_cryostat() on every check.

Definition at line 1557 of file GeometryCore.h.

Type of list of cryostats.

Definition at line 1503 of file GeometryCore.h.

using geo::GeometryCore::DefaultPoint_t = TVector3
private

Default template argument.

Definition at line 1471 of file GeometryCore.h.

using geo::GeometryCore::DefaultVector_t = TVector3
private

Default template argument.

Definition at line 1470 of file GeometryCore.h.

Definition at line 1477 of file GeometryCore.h.

Forward-iterator browsing all plane IDs in the detector.

Usage example with a while loop:

geo::GeometryCore::plane_id_iterator iPlane = geom->begin_plane_id(),
pend = geom->end_plane_id();
while (iPlane != pend) {
std::cout << "Plane: " << *iPlane << std::endl;
// the plane descriptor object
const geo::PlaneGeo* pPlane = iPlane.get();
// the TPC the plane is in
geo::TPCGeo const& TPC = geom->TPC(*iPlane);
++iPlane;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IteratePlaneIDs() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_plane_id() on every check.

Definition at line 1627 of file GeometryCore.h.

Forward-iterator browsing all planes in the detector.

Usage example with a while loop:

geo::GeometryCore::plane_iterator iPlane = geom->begin_plane(),
pend = geom->end_plane();
while (iPlane != pend) {
std::cout << "Plane: " << iPlane.ID() << std::endl;
// the plane descriptor object
geo::PlaneGeo const& Plane = *iPlane;
++iPlane;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IteratePlanes() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_plane() on every check.

Definition at line 1649 of file GeometryCore.h.

Definition at line 1500 of file GeometryCore.h.

Forward-iterator browsing all TPC IDs in the detector.

Usage example with a while loop:

geo::GeometryCore::TPC_id_iterator iTPC = geom->begin_TPC_id(),
tend = geom->end_TPC_id();
while (iTPC != tend) {
std::cout << "TPC: " << *iTPC << std::endl;
// the TPC descriptor object
const geo::TPCGeo* pTPC = iTPC.get();
// the cryostat the TPC is in
geo::CryostatGeo const& Cryo = geom->Cryostat(*iTPC);
++iTPC;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateTPCIDs() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_TPC_id() on every check.

Definition at line 1581 of file GeometryCore.h.

Forward-iterator browsing all TPCs in the detector.

Usage example with a while loop:

geo::GeometryCore::TPC_iterator iTPC = geom->begin_TPC(),
tend = geom->end_TPC();
while (iTPC != tend) {
std::cout << "TPC: " << iTPC.ID() << std::endl;
// the TPC descriptor object
geo::TPCGeo const& TPC = *iTPC;
++iTPC;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateTPCs() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_TPC() on every check.

Definition at line 1603 of file GeometryCore.h.

Forward-iterator browsing all wire IDs in the detector.

Usage example with a while loop:

geo::GeometryCore::wire_id_iterator iWire = geom->begin_wire_id(),
wend = geom->end_wire_id();
while (iWire != wend) {
std::cout << "Wire: " << *iWire << std::endl;
// the wire descriptor object
const geo::WireGeo* pWire = iWire.get();
// the TPC the wire is in
geo::TPCGeo const& TPC = geom->TPC(*iWire);
++iWire;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateWireIDs() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_wire_id() on every check.

Definition at line 1673 of file GeometryCore.h.

Forward-iterator browsing all wires in the detector.

Usage example with a while loop:

geo::GeometryCore::wire_iterator iWire = geom->begin_wire(),
wend = geom->end_wire();
while (iWire != wend) {
std::cout << "Wire: " << iWire.ID() << std::endl;
// the wire descriptor object
geo::WireGeo const& Wire = *iWire;
++iWire;
// ...
} // while

The recommended way to iterate is actually to use GeometryCore::IterateWires() in a range-for loop. It is recommended to save the end iterator rather than calling GeometryCore::end_wire() on every check.

Definition at line 1695 of file GeometryCore.h.

Constructor & Destructor Documentation

geo::GeometryCore::GeometryCore ( fhicl::ParameterSet const &  pset)

Initialize geometry from a given configuration.

Parameters
psetconfiguration parameters

This constructor does not load any geometry description. The next step is to do exactly that, by GeometryCore::LoadGeometryFile().

Definition at line 59 of file GeometryCore.cxx.

62  : fSurfaceY (pset.get< double >("SurfaceY" ))
63  , fDetectorName (pset.get< std::string >("Name" ))
64  , fMinWireZDist (pset.get< double >("MinWireZDist", 3.0 ))
65  , fPositionWiggle (pset.get< double >("PositionEpsilon", 1.e-4))
67  (pset.get<fhicl::ParameterSet>("Builder", fhicl::ParameterSet()))
68  {
69  std::transform(fDetectorName.begin(), fDetectorName.end(),
70  fDetectorName.begin(), ::tolower);
71  } // GeometryCore::GeometryCore()
std::string string
Definition: nybbler.cc:12
double fSurfaceY
The point where air meets earth for this detector.
double fPositionWiggle
accounting for rounding errors when testing positions
std::string fDetectorName
Name of the detector.
fhicl::ParameterSet fBuilderParameters
geo::GeometryCore::~GeometryCore ( )

Destructor.

Definition at line 75 of file GeometryCore.cxx.

75  {
76  ClearGeometry();
77  } // GeometryCore::~GeometryCore()
void ClearGeometry()
Deletes the detector geometry structures.
geo::GeometryCore::GeometryCore ( GeometryCore const &  )
delete
geo::GeometryCore::GeometryCore ( GeometryCore &&  )
delete

Member Function Documentation

void geo::GeometryCore::ApplyChannelMap ( std::unique_ptr< geo::ChannelMapAlg pChannelMap)

Initializes the geometry to work with this channel map.

Parameters
pChannelMapa pointer to the channel mapping algorithm to be used
See also
LoadGeometryFile()

The specified channel mapping is used with this geometry. These modifications typically involve some resorting of the objects.

This method needs to be called after LoadGeometryFile() to complete the geometry initialization.

Definition at line 82 of file GeometryCore.cxx.

83  {
84  SortGeometry(pChannelMap->Sorter());
85  UpdateAfterSorting(); // after channel mapping has sorted objects, set their IDs
86  pChannelMap->Initialize(fGeoData);
87  fChannelMapAlg = move(pChannelMap);
88  } // GeometryCore::ApplyChannelMap()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
GeometryData_t fGeoData
The detector description data.
virtual geo::GeoObjectSorter const & Sorter() const =0
Returns the object to sort geometry with.
void SortGeometry(geo::GeoObjectSorter const &sorter)
Runs the sorting of geometry with the sorter provided by channel mapping.
def move(depos, offset)
Definition: depos.py:107
void UpdateAfterSorting()
Performs all the updates needed after sorting.
virtual void Initialize(GeometryData_t const &geodata)=0
Geometry initialisation.
const AuxDetGeo & geo::GeometryCore::AuxDet ( unsigned int const  ad = 0) const

Returns the specified auxiliary detector.

Parameters
adthe auxiliary detector index
Returns
a constant reference to the specified auxiliary detector
Todo:

what happens if it does not exist?

remove the default parameter?

Definition at line 340 of file GeometryCore.cxx.

341  {
342  if(ad >= NAuxDets())
343  throw cet::exception("GeometryCore") << "AuxDet "
344  << ad
345  << " does not exist\n";
346 
347  return AuxDets()[ad];
348  }
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
unsigned int NAuxDets() const
Returns the number of auxiliary detectors.
AuxDetList_t& geo::GeometryCore::AuxDets ( )
inlineprotected

Return the interfal auxiliary detectors list.

Definition at line 5503 of file GeometryCore.h.

5503 { return fGeoData.auxDets; }
GeometryData_t fGeoData
The detector description data.
AuxDetList_t auxDets
The auxiliary detectors.
Definition: GeometryData.h:39
AuxDetList_t const& geo::GeometryCore::AuxDets ( ) const
inlineprotected

Definition at line 5504 of file GeometryCore.h.

5504 { return fGeoData.auxDets; }
GeometryData_t fGeoData
The detector description data.
AuxDetList_t auxDets
The auxiliary detectors.
Definition: GeometryData.h:39
cryostat_iterator geo::GeometryCore::begin_cryostat ( ) const
inline

Returns an iterator pointing to the first cryostat.

Definition at line 2154 of file GeometryCore.h.

geo::cryostat_iterator cryostat_iterator
Forward-iterator browsing all cryostats in the detector.
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
cryostat_id_iterator geo::GeometryCore::begin_cryostat_id ( ) const
inline

Returns an iterator pointing to the first cryostat ID.

Definition at line 2146 of file GeometryCore.h.

static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::cryostat_id_iterator cryostat_id_iterator
Forward-iterator browsing all cryostat IDs in the detector.
plane_iterator geo::GeometryCore::begin_plane ( ) const
inline

Returns an iterator pointing to the first plane in the detector.

Definition at line 3084 of file GeometryCore.h.

3085  { return plane_iterator(this, plane_iterator::begin_pos); }
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
plane_iterator geo::GeometryCore::begin_plane ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing to the first plane in the specified cryostat.

Definition at line 3093 of file GeometryCore.h.

3094  { return plane_iterator(this, GetBeginPlaneID(ID)); }
unsigned int ID
geo::PlaneID GetBeginPlaneID(geo::CryostatID const &id) const
Returns the ID of the first plane of the specified cryostat.
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
plane_iterator geo::GeometryCore::begin_plane ( geo::TPCID const &  ID) const
inline

Returns an iterator pointing to the first plane in the specified TPC.

Definition at line 3102 of file GeometryCore.h.

3103  { return plane_iterator(this, GetBeginPlaneID(ID)); }
unsigned int ID
geo::PlaneID GetBeginPlaneID(geo::CryostatID const &id) const
Returns the ID of the first plane of the specified cryostat.
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
plane_id_iterator geo::GeometryCore::begin_plane_id ( ) const
inline

Returns an iterator pointing to the first plane ID in the detector.

Definition at line 3056 of file GeometryCore.h.

static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
plane_id_iterator geo::GeometryCore::begin_plane_id ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing to the first plane ID in the specified cryostat.

Definition at line 3065 of file GeometryCore.h.

3066  { return plane_id_iterator(this, GetBeginPlaneID(ID)); }
unsigned int ID
geo::PlaneID GetBeginPlaneID(geo::CryostatID const &id) const
Returns the ID of the first plane of the specified cryostat.
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
plane_id_iterator geo::GeometryCore::begin_plane_id ( geo::TPCID const &  ID) const
inline

Returns an iterator pointing to the first plane ID in the specified TPC.

Definition at line 3075 of file GeometryCore.h.

3076  { return plane_id_iterator(this, GetBeginPlaneID(ID)); }
unsigned int ID
geo::PlaneID GetBeginPlaneID(geo::CryostatID const &id) const
Returns the ID of the first plane of the specified cryostat.
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
ROP_id_iterator geo::GeometryCore::begin_ROP_id ( ) const
inline

Returns an iterator pointing to the first ROP ID in the detector.

Definition at line 5232 of file GeometryCore.h.

5233  { return ROP_id_iterator(this, ROP_id_iterator::begin_pos); }
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
ROP_id_iterator geo::GeometryCore::begin_ROP_id ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing to the first readout plane ID in the specified cryostat.

Definition at line 5241 of file GeometryCore.h.

5242  { return ROP_id_iterator(this, GetBeginROPID(ID)); }
unsigned int ID
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
readout::ROPID GetBeginROPID(geo::CryostatID const &id) const
Returns the ID of the first readout plane of the specified cryostat.
ROP_id_iterator geo::GeometryCore::begin_ROP_id ( readout::TPCsetID const &  ID) const
inline

Returns an iterator pointing to the first readout plane ID in the specified TPC set.

Definition at line 5251 of file GeometryCore.h.

5252  { return ROP_id_iterator(this, GetBeginROPID(ID)); }
unsigned int ID
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
readout::ROPID GetBeginROPID(geo::CryostatID const &id) const
Returns the ID of the first readout plane of the specified cryostat.
TPC_iterator geo::GeometryCore::begin_TPC ( ) const
inline

Returns an iterator pointing to the first TPC in the detector.

Definition at line 2564 of file GeometryCore.h.

2565  { return TPC_iterator(this, TPC_iterator::begin_pos); }
geo::TPC_iterator TPC_iterator
Forward-iterator browsing all TPCs in the detector.
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
TPC_iterator geo::GeometryCore::begin_TPC ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing to the first TPC in the detector.

Definition at line 2572 of file GeometryCore.h.

2573  { return TPC_iterator(this, GetBeginTPCID(cid)); }
geo::TPC_iterator TPC_iterator
Forward-iterator browsing all TPCs in the detector.
geo::TPCID GetBeginTPCID(geo::CryostatID const &id) const
Returns the ID of the first TPC in the specified cryostat.
TPC_id_iterator geo::GeometryCore::begin_TPC_id ( ) const
inline

Returns an iterator pointing to the first TPC ID in the detector.

Definition at line 2546 of file GeometryCore.h.

2547  { return TPC_id_iterator(this, TPC_id_iterator::begin_pos); }
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::TPC_id_iterator TPC_id_iterator
Forward-iterator browsing all TPC IDs in the detector.
TPC_id_iterator geo::GeometryCore::begin_TPC_id ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing to the first TPC ID in the specified cryostat.

Definition at line 2555 of file GeometryCore.h.

2556  { return TPC_id_iterator(this, GetBeginTPCID(cid)); }
geo::TPC_id_iterator TPC_id_iterator
Forward-iterator browsing all TPC IDs in the detector.
geo::TPCID GetBeginTPCID(geo::CryostatID const &id) const
Returns the ID of the first TPC in the specified cryostat.
TPCset_id_iterator geo::GeometryCore::begin_TPCset_id ( ) const
inline

Returns an iterator pointing to the first TPC set ID in the detector.

Definition at line 4997 of file GeometryCore.h.

static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
details::TPCset_id_iterator_base< readout::TPCsetID > TPCset_id_iterator
Forward iterator browsing all TPC sets in the detector.
TPCset_id_iterator geo::GeometryCore::begin_TPCset_id ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing to the first TPC set ID in the specified cryostat.

Definition at line 5006 of file GeometryCore.h.

5007  { return TPCset_id_iterator(this, GetBeginTPCsetID(cid)); }
readout::TPCsetID GetBeginTPCsetID(geo::CryostatID const &id) const
Returns the ID of the first TPC set in the specified cryostat.
details::TPCset_id_iterator_base< readout::TPCsetID > TPCset_id_iterator
Forward iterator browsing all TPC sets in the detector.
wire_iterator geo::GeometryCore::begin_wire ( ) const
inline

Returns an iterator pointing to the first wire in the detector.

Definition at line 3504 of file GeometryCore.h.

3505  { return wire_iterator(this, wire_iterator::begin_pos); }
static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::begin_wire ( geo::CryostatID const &  id) const
inline

Returns an iterator pointing to the first wire in specified cryostat.

Definition at line 3512 of file GeometryCore.h.

3513  { return wire_iterator(begin_wire_id(id)); }
wire_id_iterator begin_wire_id() const
Returns an iterator pointing to the first wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::begin_wire ( geo::TPCID const &  id) const
inline

Returns an iterator pointing to the first wire in specified TPC.

Definition at line 3520 of file GeometryCore.h.

3521  { return wire_iterator(begin_wire_id(id)); }
wire_id_iterator begin_wire_id() const
Returns an iterator pointing to the first wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::begin_wire ( geo::PlaneID const &  id) const
inline

Returns an iterator pointing to the first wire in specified plane.

Definition at line 3528 of file GeometryCore.h.

3529  { return wire_iterator(begin_wire_id(id)); }
wire_id_iterator begin_wire_id() const
Returns an iterator pointing to the first wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_id_iterator geo::GeometryCore::begin_wire_id ( ) const
inline

Returns an iterator pointing to the first wire ID in the detector.

Definition at line 3471 of file GeometryCore.h.

static constexpr BeginPos_t begin_pos
Definition: GeometryCore.h:107
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::begin_wire_id ( geo::CryostatID const &  id) const
inline

Returns an iterator pointing to the first wire ID in specified cryostat.

Definition at line 3479 of file GeometryCore.h.

3480  { return wire_id_iterator(this, GetBeginWireID(id)); }
geo::WireID GetBeginWireID(geo::CryostatID const &id) const
Returns the ID of the first wire in the specified cryostat.
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::begin_wire_id ( geo::TPCID const &  id) const
inline

Returns an iterator pointing to the first wire ID in specified TPC.

Definition at line 3488 of file GeometryCore.h.

3489  { return wire_id_iterator(this, GetBeginWireID(id)); }
geo::WireID GetBeginWireID(geo::CryostatID const &id) const
Returns the ID of the first wire in the specified cryostat.
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::begin_wire_id ( geo::PlaneID const &  id) const
inline

Returns an iterator pointing to the first wire ID in specified plane.

Definition at line 3496 of file GeometryCore.h.

3497  { return wire_id_iterator(this, GetBeginWireID(id)); }
geo::WireID GetBeginWireID(geo::CryostatID const &id) const
Returns the ID of the first wire in the specified cryostat.
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
void geo::GeometryCore::BuildGeometry ( geo::GeometryBuilder builder)
private

Parses ROOT geometry nodes and builds LArSoft geometry representation.

Parameters
builderthe algorithm to be used

Definition at line 1030 of file GeometryCore.cxx.

1031  {
1032  geo::GeoNodePath path{ gGeoManager->GetTopNode() };
1033  Cryostats() = builder.extractCryostats(path);
1034  AuxDets() = builder.extractAuxiliaryDetectors(path);
1035  }
Cryostats_t extractCryostats(Path_t const &path)
Looks for all cryostats under the specified path.
AuxDets_t extractAuxiliaryDetectors(Path_t const &path)
Looks for all auxiliary detectors under the specified path.
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
CryostatList_t & Cryostats()
Return the internal cryostat list.
Representation of a node and its ancestry.
Definition: GeoNodePath.h:38
geo::ChannelMapAlg const* geo::GeometryCore::ChannelMap ( ) const
inlineprotected

Returns the object handling the channel map.

Definition at line 5492 of file GeometryCore.h.

5493  { return fChannelMapAlg.get(); }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
bool geo::GeometryCore::ChannelsIntersect ( raw::ChannelID_t  c1,
raw::ChannelID_t  c2,
double &  y,
double &  z 
) const

Returns an intersection point of two channels.

Parameters
c1one channel ID
c2the other channel ID
y(output) y coordinate of the intersection
z(output) z coordinate of the intersection
Returns
whether a intersection point was found
Todo:

what happens for channels from different TPCs?

what happens for channels with multiple intersection points?

Deprecated:
This is clearly not APA-aware

Definition at line 1271 of file GeometryCore.cxx.

1275  {
1276 
1277  // [GP] these errors should be exceptions, and this function is deprecated
1278  // because it violates interoperability
1279  std::vector<geo::WireID> chan1wires = ChannelToWire(c1);
1280  if (chan1wires.empty()) {
1281  mf::LogError("ChannelsIntersect")
1282  << "1st channel " << c1 << " maps to no wire (is it a real one?)";
1283  return false;
1284  }
1285  std::vector<geo::WireID> chan2wires = ChannelToWire(c2);
1286  if (chan2wires.empty()) {
1287  mf::LogError("ChannelsIntersect")
1288  << "2nd channel " << c2 << " maps to no wire (is it a real one?)";
1289  return false;
1290  }
1291 
1292  if (chan1wires.size() > 1) {
1293  mf::LogWarning("ChannelsIntersect")
1294  << "1st channel " << c1 << " maps to " << chan2wires.size()
1295  << " wires; using the first!";
1296  return false;
1297  }
1298  if (chan2wires.size() > 1) {
1299  mf::LogError("ChannelsIntersect")
1300  << "2nd channel " << c2 << " maps to " << chan2wires.size()
1301  << " wires; using the first!";
1302  return false;
1303  }
1304 
1305  geo::WireIDIntersection widIntersect;
1306  if (this->WireIDsIntersect(chan1wires[0],chan2wires[0],widIntersect)){
1307  y = widIntersect.y;
1308  z = widIntersect.z;
1309  return true;
1310  }
1311  else{
1312  y = widIntersect.y;
1313  z = widIntersect.z;
1314  return false;
1315  }
1316  }
double z
z position of intersection
Definition: geo_types.h:805
std::vector< geo::WireID > ChannelToWire(raw::ChannelID_t const channel) const
Returns a list of wires connected to the specified TPC channel.
MaybeLogger_< ELseverityLevel::ELsev_error, false > LogError
bool WireIDsIntersect(WireID const &wid1, WireID const &wid2, geo::Point_t &intersection) const
Computes the intersection between two wires.
double y
y position of intersection
Definition: geo_types.h:804
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
std::vector< raw::ChannelID_t > geo::GeometryCore::ChannelsInTPCs ( ) const

Returns an std::vector<ChannelID_t> in all TPCs in a TPCSet.

Definition at line 221 of file GeometryCore.cxx.

222  {
223  std::vector<raw::ChannelID_t> channels;
224  channels.reserve(fChannelMapAlg->Nchannels());
225 
226  for (const readout::TPCsetID & ts: IterateTPCsetIDs())
227  {
228  for (auto const t: fChannelMapAlg->TPCsetToTPCs(ts))
229  {
230  for (auto const & wire: IterateWireIDs(t))
231  {
232  channels.push_back(fChannelMapAlg->PlaneWireToChannel(wire));
233  }
234  }
235  }
236  std::sort(channels.begin(), channels.end());
237  auto last = std::unique(channels.begin(), channels.end());
238  channels.erase(last, channels.end());
239  return channels;
240  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
Class identifying a set of TPC sharing readout channels.
Definition: readout_types.h:70
IteratorBox< wire_id_iterator,&GeometryCore::begin_wire_id,&GeometryCore::end_wire_id > IterateWireIDs() const
Enables ranged-for loops on all wire IDs of the detector.
IteratorBox< TPCset_id_iterator,&GeometryCore::begin_TPCset_id,&GeometryCore::end_TPCset_id > IterateTPCsetIDs() const
Enables ranged-for loops on all TPC set IDs of the detector.
const AuxDetGeo & geo::GeometryCore::ChannelToAuxDet ( std::string const &  auxDetName,
uint32_t const &  channel 
) const

Definition at line 555 of file GeometryCore.cxx.

557  {
558  size_t adIdx = fChannelMapAlg->ChannelToAuxDet(AuxDets(), auxDetName, channel);
559  return this->AuxDet(adIdx);
560  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
uint8_t channel
Definition: CRTFragment.hh:201
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
AuxDetGeo const & AuxDet(unsigned int const ad=0) const
Returns the specified auxiliary detector.
const AuxDetSensitiveGeo & geo::GeometryCore::ChannelToAuxDetSensitive ( std::string const &  auxDetName,
uint32_t const &  channel 
) const

Definition at line 563 of file GeometryCore.cxx.

565  {
566  auto idx = fChannelMapAlg->ChannelToSensitiveAuxDet(AuxDets(), auxDetName, channel);
567  return this->AuxDet(idx.first).SensitiveVolume(idx.second);
568  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
AuxDetSensitiveGeo const & SensitiveVolume(size_t sv) const
Definition: AuxDetGeo.h:171
uint8_t channel
Definition: CRTFragment.hh:201
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
AuxDetGeo const & AuxDet(unsigned int const ad=0) const
Returns the specified auxiliary detector.
readout::ROPID geo::GeometryCore::ChannelToROP ( raw::ChannelID_t  channel) const

Returns the ID of the ROP the channel belongs to

Exceptions
cet::exception(category: "Geometry") if non-existent channel

Definition at line 1113 of file GeometryCore.cxx.

1114  {
1115  return fChannelMapAlg->ChannelToROP(channel);
1116  } // GeometryCore::ChannelToROP()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
uint8_t channel
Definition: CRTFragment.hh:201
std::vector< geo::WireID > geo::GeometryCore::ChannelToWire ( raw::ChannelID_t const  channel) const

Returns a list of wires connected to the specified TPC channel.

Parameters
channelTPC channel ID
Returns
vector containing the ID of all the connected wires
Exceptions
cet::exception(category: "Geometry") if non-existent channel

Definition at line 1107 of file GeometryCore.cxx.

1108  {
1109  return fChannelMapAlg->ChannelToWire(channel);
1110  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
uint8_t channel
Definition: CRTFragment.hh:201
void geo::GeometryCore::CheckIndependentPlanesOnSameTPC ( geo::PlaneID const &  pid1,
geo::PlaneID const &  pid2,
const char *  caller 
)
staticprivate

Throws an exception ("GeometryCore" category) unless pid1 and pid2 are on different planes of the same TPC (ID validity is not checked)

Definition at line 1514 of file GeometryCore.cxx.

1515  {
1516  if(pid1.asTPCID() != pid2.asTPCID()) {
1517  throw cet::exception("GeometryCore")
1518  << caller << " needs two planes on the same TPC (got "
1519  << std::string(pid1) << " and " << std::string(pid2) << ")\n";
1520  }
1521  if(pid1 == pid2) { // was: return 999;
1522  throw cet::exception("GeometryCore")
1523  << caller << " needs two different planes, got "
1524  << std::string(pid1) << " twice\n";
1525  }
1526  } // GeometryCore::CheckIndependentPlanesOnSameTPC()
std::string string
Definition: nybbler.cc:12
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
void geo::GeometryCore::ClearGeometry ( )
private

Deletes the detector geometry structures.

Definition at line 160 of file GeometryCore.cxx.

161  {
162  Cryostats().clear();
163  AuxDets().clear();
164  }
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
CryostatList_t & Cryostats()
Return the internal cryostat list.
double geo::GeometryCore::ComputeThirdPlane_dTdW ( double  angle1,
double  pitch1,
double  dTdW1,
double  angle2,
double  pitch2,
double  dTdW2,
double  angle_target,
double  pitch_target 
)
static

Returns the slope on the third plane, given it in the other two.

Parameters
angle1angle or the wires on the first plane
pitch1wire pitch on the first plane
dTdW1slope in dt/dw units as observed on the first plane
angle2angle or the wires on the second plane
pitch2wire pitch on the second plane
dTdW2slope in dt/dw units as observed on the second plane
angle_targetangle or the wires on the target plane
pitch_targetwire pitch on the target plane
Returns
dt/dw slope as measured on the third plane, or 999 if infinity

The input slope must be specified in dt/dw non-homogeneous coordinates.

This function will return a small slope if both input slopes are small.

Definition at line 1632 of file GeometryCore.cxx.

1637  {
1638  // we need to convert dt/dw into homogeneous coordinates, and then back;
1639  // slope = [dT * (TDCperiod / driftVelocity)] / [dW * wirePitch]
1640  // The coefficient of dT is assumed to be the same for all the planes,
1641  // and it finally cancels out. Pitches cancel out only if they are all
1642  // the same.
1643  return pitch_target * ComputeThirdPlaneSlope
1644  (angle1, dTdW1 / pitch1, angle2, dTdW2 / pitch2, angle_target);
1645  } // GeometryCore::ComputeThirdPlane_dTdW()
static double ComputeThirdPlaneSlope(double angle1, double slope1, double angle2, double slope2, double angle_target)
Returns the slope on the third plane, given it in the other two.
double geo::GeometryCore::ComputeThirdPlaneSlope ( double  angle1,
double  slope1,
double  angle2,
double  slope2,
double  angle_target 
)
static

Returns the slope on the third plane, given it in the other two.

Parameters
angle1angle or the wires on the first plane
slope1slope as observed on the first plane
angle2angle or the wires on the second plane
slope2slope as observed on the second plane
angle_targetangle or the wires on the target plane
Returns
the slope as measure on the third plane, or 999 if infinity

This function will return a small slope if both input slopes are small.

Definition at line 1607 of file GeometryCore.cxx.

1608  {
1609  // note that, if needed, the trigonometric functions can be pre-calculated.
1610 
1611  // Can't resolve very small slopes
1612  if ((std::abs(slope1) < 0.001) && (std::abs(slope2)) < 0.001) return 0.001;
1613 
1614  // We need the "wire coordinate direction" for each plane.
1615  // This is perpendicular to the wire orientation.
1616  double slope3 = 0.001;
1617  if (std::abs(slope1) > 0.001 && std::abs(slope2) > 0.001) {
1618  slope3
1619  = (
1620  + (1./slope1)*std::sin(angle3-angle2)
1621  - (1./slope2)*std::sin(angle3-angle1)
1622  ) / std::sin(angle1-angle2)
1623  ;
1624  }
1625  if (slope3 != 0.) slope3 = 1./slope3;
1626  else slope3 = 999.;
1627 
1628  return slope3;
1629  } // GeometryCore::ComputeThirdPlaneSlope()
T abs(T value)
CryostatGeo const & geo::GeometryCore::Cryostat ( geo::CryostatID const &  cryoid) const

Returns the specified cryostat.

Parameters
cstatnumber of cryostat
cryoidcryostat ID
Returns
a constant reference to the specified cryostat
Exceptions
cet::exception(GeometryCore category) if cryostat not present

The GetElement() method is overloaded and its return depends on the type of ID.

Todo:
Make the cryostat number mandatory (as CryostatID)

Definition at line 321 of file GeometryCore.cxx.

321  {
322  CryostatGeo const* pCryo = CryostatPtr(cryoid);
323  if(!pCryo) {
324  throw cet::exception("GeometryCore") << "Cryostat #"
325  << cryoid.Cryostat
326  << " does not exist\n";
327  }
328  return *pCryo;
329  } // GeometryCore::Cryostat(CryostatID)
CryostatGeo const * CryostatPtr(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
CryostatGeo const& geo::GeometryCore::Cryostat ( unsigned int const  cstat = 0) const
inline

Definition at line 2031 of file GeometryCore.h.

2032  { return Cryostat(geo::CryostatID(cstat)); }
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
void geo::GeometryCore::CryostatBoundaries ( double *  boundaries,
geo::CryostatID const &  cid 
) const

Returns the boundaries of the specified cryostat.

Parameters
boundaries(output) pointer to an area of 6 doubles for boundaries
cidcryostat ID
Exceptions
cet::exception("GeometryCore" category) if cryostat not present
See also
CryostatGeo::Boundaries()

The boundaries array is filled with: [0] lower x coordinate [1] upper x coordinate [2] lower y coordinate [3] upper y coordinate [4] lower z coordinate [5] upper z coordinate

Deprecated:
Use CryostatGeo::Boundaries() (from Cryostat(cid)).
Todo:
What happen on invalid cryostat?

Definition at line 791 of file GeometryCore.cxx.

792  {
793  geo::CryostatGeo const& cryo = Cryostat(cid);
794  cryo.Boundaries(boundaries);
795  } // GeometryCore::CryostatBoundaries()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
geo::BoxBoundedGeo const & Boundaries() const
Returns boundaries of the cryostat (in centimetres).
Definition: CryostatGeo.h:115
void geo::GeometryCore::CryostatBoundaries ( double *  boundaries,
unsigned int  cstat = 0 
) const
inline

Returns the boundaries of the specified cryostat.

Parameters
boundaries(output) pointer to an area of 6 doubles for boundaries
cstatnumber of cryostat
Exceptions
cet::exception("GeometryCore" category) if cryostat not present
See also
CryostatGeo::Boundaries()

The boundaries array is filled with: [0] lower x coordinate [1] upper x coordinate [2] lower y coordinate [3] upper y coordinate [4] lower z coordinate [5] upper z coordinate

Deprecated:
Use CryostatBoundaries(double*, geo::CryostatID const&) or (recommended) CryostatGeo::Boundaries() from Cryostat(cid) instead

Definition at line 2260 of file GeometryCore.h.

2261  { CryostatBoundaries(boundaries, geo::CryostatID(cstat)); }
void CryostatBoundaries(double *boundaries, geo::CryostatID const &cid) const
Returns the boundaries of the specified cryostat.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::Length_t geo::GeometryCore::CryostatHalfHeight ( geo::CryostatID const &  cid) const

Returns the height of the cryostat (y direction)

Definition at line 778 of file GeometryCore.cxx.

779  {
780  return Cryostat(cid).HalfHeight();
781  }
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
double HalfHeight() const
Half height of the cryostat [cm].
geo::Length_t geo::GeometryCore::CryostatHalfHeight ( unsigned int  cstat = 0) const
inline

Definition at line 2214 of file GeometryCore.h.

2215  { return CryostatHalfHeight(geo::CryostatID(cstat)); }
geo::Length_t CryostatHalfHeight(geo::CryostatID const &cid) const
Returns the height of the cryostat (y direction)
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::Length_t geo::GeometryCore::CryostatHalfWidth ( geo::CryostatID const &  cid) const

Returns the half width of the cryostat (x direction)

Definition at line 771 of file GeometryCore.cxx.

772  {
773  return Cryostat(cid).HalfWidth();
774  }
double HalfWidth() const
Half width of the cryostat [cm].
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
geo::Length_t geo::GeometryCore::CryostatHalfWidth ( unsigned int  cstat = 0) const
inline

Definition at line 2207 of file GeometryCore.h.

2208  { return CryostatHalfWidth(geo::CryostatID(cstat)); }
geo::Length_t CryostatHalfWidth(geo::CryostatID const &cid) const
Returns the half width of the cryostat (x direction)
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::Length_t geo::GeometryCore::CryostatLength ( geo::CryostatID const &  cid) const

Returns the length of the cryostat (z direction)

Definition at line 784 of file GeometryCore.cxx.

785  {
786  return Cryostat(cid).Length();
787  }
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
double Length() const
Length of the cryostat [cm].
Definition: CryostatGeo.h:107
geo::Length_t geo::GeometryCore::CryostatLength ( unsigned int  cstat = 0) const
inline

Definition at line 2221 of file GeometryCore.h.

2222  { return CryostatLength(geo::CryostatID(cstat)); }
geo::Length_t CryostatLength(geo::CryostatID const &cid) const
Returns the length of the cryostat (z direction)
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
CryostatGeo const* geo::GeometryCore::CryostatPtr ( geo::CryostatID const &  cryoid) const
inline

Returns the specified cryostat.

Parameters
cryoidcryostat ID
Returns
a constant pointer to the specified cryostat, or nullptr if none

The GetElementPtr() method is overloaded and its return depends on the type of ID.

Definition at line 2046 of file GeometryCore.h.

2047  { return HasCryostat(cryoid)? &(Cryostats()[cryoid.Cryostat]): nullptr; }
CryostatList_t & Cryostats()
Return the internal cryostat list.
bool HasCryostat(geo::CryostatID const &cryoid) const
Returns whether we have the specified cryostat.
CryostatList_t& geo::GeometryCore::Cryostats ( )
inlineprotected

Return the internal cryostat list.

Definition at line 5497 of file GeometryCore.h.

5497 { return fGeoData.cryostats; }
GeometryData_t fGeoData
The detector description data.
CryostatList_t cryostats
The detector cryostats.
Definition: GeometryData.h:38
CryostatList_t const& geo::GeometryCore::Cryostats ( ) const
inlineprotected

Definition at line 5498 of file GeometryCore.h.

5498 { return fGeoData.cryostats; }
GeometryData_t fGeoData
The detector description data.
CryostatList_t cryostats
The detector cryostats.
Definition: GeometryData.h:38
double geo::GeometryCore::DefaultWiggle ( ) const
inline

Returns the tolerance used in looking for positions.

Returns
the tolerance value

This parameter is used as tolerance ("wiggle") for methods that require it (e.g. geo::CryostatGeo::FindTPCAtPosition()). Typically, it's a additional fraction of tolerance: 0 means no tolerance, 0.1 means 10% tolerance.

Todo:
Confirm the definition of wiggle: this one is taken from other doc

Definition at line 1731 of file GeometryCore.h.

1731 { return fPositionWiggle; }
double fPositionWiggle
accounting for rounding errors when testing positions
geo::BoxBoundedGeo geo::GeometryCore::DetectorEnclosureBox ( std::string const &  name = "volDetEnclosure") const

Returns the absolute coordinates of the detector enclosure volume [cm].

Parameters
namename of the volume to be sought (default: volDetEnclosure)
Exceptions
cet::exceptionif the specified volume is not found

Definition at line 629 of file GeometryCore.cxx.

630  {
631  auto const& path = FindDetectorEnclosure(name);
632  if (path.empty()) {
633  throw cet::exception("GeometryCore")
634  << "DetectorEnclosureBox(): can't find enclosure volume '" << name << "'\n";
635  }
636 
637  TGeoVolume const* pEncl = path.back()->GetVolume();
638  auto const* pBox = dynamic_cast<TGeoBBox const*>(pEncl->GetShape());
639 
640  // check that this is indeed a box
641  if (!pBox) {
642  // at initialisation time we don't know yet our real ID
643  throw cet::exception("GeometryCore") << "Detector enclosure '"
644  << name << "' is not a box! (it is a " << pEncl->GetShape()->IsA()->GetName()
645  << ")\n";
646  }
647 
648  geo::LocalTransformation<TGeoHMatrix> trans(path, path.size() - 1);
649  // get the half width, height, etc of the cryostat
650  const double halfwidth = pBox->GetDX();
651  const double halfheight = pBox->GetDY();
652  const double halflength = pBox->GetDZ();
653 
654  return {
655  trans.LocalToWorld(geo::Point_t{ -halfwidth, -halfheight, -halflength }),
656  trans.LocalToWorld(geo::Point_t{ +halfwidth, +halfheight, +halflength })
657  };
658  } // geo::GeometryCore::DetectorEnclosureBox()
static QCString name
Definition: declinfo.cpp:673
std::vector< TGeoNode const * > FindDetectorEnclosure(std::string const &name="volDetEnclosure") const
void LocalToWorld(double const *local, double *world) const
Transforms a point from local frame to world frame.
Class to transform between world and local coordinates.
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Definition: geo_vectors.h:184
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
std::string geo::GeometryCore::DetectorName ( ) const
inline

Returns a string with the name of the detector, as configured.

Definition at line 1761 of file GeometryCore.h.

1761 { return fDetectorName; }
std::string fDetectorName
Name of the detector.
geo::Length_t geo::GeometryCore::DetHalfHeight ( geo::TPCID const &  tpcid) const

Returns the half height of the active volume of the specified TPC.

Parameters
tpcidID of the TPC
tpcTPC number within the cryostat
cstatnumber of cryostat
Returns
the value of the half height of the specified TPC
Exceptions
cet::exception(GeometryCore category) if cryostat not present
cet::exception(TPCOutOfRange category) if no such TPC
See also
geo::TPCGeo::ActiveHalfHeight()

See geo::TPCGeo::ActiveHalfHeight() for more details.

Todo:

deprecate this function

rename the function

Definition at line 758 of file GeometryCore.cxx.

759  {
760  return TPC(tpcid).ActiveHalfHeight();
761  }
double ActiveHalfHeight() const
Half height (associated with y coordinate) of active TPC volume [cm].
Definition: TPCGeo.h:99
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
geo::Length_t geo::GeometryCore::DetHalfHeight ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Definition at line 2738 of file GeometryCore.h.

2739  { return DetHalfHeight(geo::TPCID(cstat, tpc)); }
geo::Length_t DetHalfHeight(geo::TPCID const &tpcid) const
Returns the half height of the active volume of the specified TPC.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
geo::Length_t geo::GeometryCore::DetHalfWidth ( geo::TPCID const &  tpcid) const

Returns the half width of the active volume of the specified TPC.

Parameters
tpcidID of the TPC
tpcTPC number within the cryostat
cstatnumber of cryostat
Returns
the value of the half width of the specified TPC
Exceptions
cet::exception(GeometryCore category) if cryostat not present
cet::exception(TPCOutOfRange category) if no such TPC
See also
geo::TPCGeo::ActiveHalfWidth()
Todo:

deprecate this function

rename the function

Definition at line 752 of file GeometryCore.cxx.

753  {
754  return TPC(tpcid).ActiveHalfWidth();
755  }
double ActiveHalfWidth() const
Half width (associated with x coordinate) of active TPC volume [cm].
Definition: TPCGeo.h:95
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
geo::Length_t geo::GeometryCore::DetHalfWidth ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Definition at line 2716 of file GeometryCore.h.

2717  { return DetHalfWidth(geo::TPCID(cstat, tpc)); }
geo::Length_t DetHalfWidth(geo::TPCID const &tpcid) const
Returns the half width of the active volume of the specified TPC.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
geo::Length_t geo::GeometryCore::DetLength ( geo::TPCID const &  tpcid) const

Returns the length of the active volume of the specified TPC.

Parameters
tpcidID of the TPC
tpcTPC number within the cryostat
cstatnumber of cryostat
Returns
the value of the length of the specified TPC
Exceptions
cet::exception(GeometryCore category) if cryostat not present
cet::exception(TPCOutOfRange category) if no such TPC
See also
geo::TPCGeo::ActiveLength()

See geo::TPCGeo::ActiveLength() for more details.

Todo:

deprecate this function

rename the function

Definition at line 764 of file GeometryCore.cxx.

765  {
766  return TPC(tpcid).ActiveLength();
767  }
double ActiveLength() const
Length (associated with z coordinate) of active TPC volume [cm].
Definition: TPCGeo.h:103
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
geo::Length_t geo::GeometryCore::DetLength ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Definition at line 2759 of file GeometryCore.h.

2760  { return DetLength(geo::TPCID(cstat, tpc)); }
geo::Length_t DetLength(geo::TPCID const &tpcid) const
Returns the length of the active volume of the specified TPC.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
cryostat_iterator geo::GeometryCore::end_cryostat ( ) const
inline

Returns an iterator pointing after the last cryostat.

Definition at line 2158 of file GeometryCore.h.

geo::cryostat_iterator cryostat_iterator
Forward-iterator browsing all cryostats in the detector.
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
cryostat_id_iterator geo::GeometryCore::end_cryostat_id ( ) const
inline

Returns an iterator pointing after the last cryostat ID.

Definition at line 2150 of file GeometryCore.h.

static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::cryostat_id_iterator cryostat_id_iterator
Forward-iterator browsing all cryostat IDs in the detector.
plane_iterator geo::GeometryCore::end_plane ( ) const
inline

Returns an iterator pointing after the last plane in the detector.

Definition at line 3088 of file GeometryCore.h.

3089  { return plane_iterator(this, plane_iterator::end_pos); }
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
plane_iterator geo::GeometryCore::end_plane ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing after the last plane in the specified cryostat.

Definition at line 3098 of file GeometryCore.h.

3099  { return plane_iterator(this, GetEndPlaneID(ID)); }
unsigned int ID
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
geo::PlaneID GetEndPlaneID(geo::CryostatID const &id) const
plane_iterator geo::GeometryCore::end_plane ( geo::TPCID const &  ID) const
inline

Returns an iterator pointing after the last plane in the specified TPC.

Definition at line 3106 of file GeometryCore.h.

3107  { return plane_iterator(this, GetEndPlaneID(ID)); }
unsigned int ID
geo::plane_iterator plane_iterator
Forward-iterator browsing all planes in the detector.
geo::PlaneID GetEndPlaneID(geo::CryostatID const &id) const
plane_id_iterator geo::GeometryCore::end_plane_id ( ) const
inline

Returns an iterator pointing after the last plane ID in the detector.

Definition at line 3060 of file GeometryCore.h.

static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
plane_id_iterator geo::GeometryCore::end_plane_id ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing after the last plane ID in the specified cryostat.

Definition at line 3070 of file GeometryCore.h.

3071  { return plane_id_iterator(this, GetEndPlaneID(ID)); }
unsigned int ID
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
geo::PlaneID GetEndPlaneID(geo::CryostatID const &id) const
plane_id_iterator geo::GeometryCore::end_plane_id ( geo::TPCID const &  ID) const
inline

Returns an iterator pointing after the last plane ID in the specified TPC.

Definition at line 3080 of file GeometryCore.h.

3081  { return plane_id_iterator(this, GetEndPlaneID(ID)); }
unsigned int ID
geo::plane_id_iterator plane_id_iterator
Forward-iterator browsing all plane IDs in the detector.
geo::PlaneID GetEndPlaneID(geo::CryostatID const &id) const
ROP_id_iterator geo::GeometryCore::end_ROP_id ( ) const
inline

Returns an iterator pointing after the last ROP ID in the detector.

Definition at line 5236 of file GeometryCore.h.

5237  { return ROP_id_iterator(this, ROP_id_iterator::end_pos); }
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
ROP_id_iterator geo::GeometryCore::end_ROP_id ( geo::CryostatID const &  ID) const
inline

Returns an iterator pointing after the last readout plane ID in the specified cryostat.

Definition at line 5246 of file GeometryCore.h.

5247  { return ROP_id_iterator(this, GetEndROPID(ID)); }
readout::ROPID GetEndROPID(geo::CryostatID const &id) const
unsigned int ID
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
ROP_id_iterator geo::GeometryCore::end_ROP_id ( readout::TPCsetID const &  ID) const
inline

Returns an iterator pointing after the last readout plane ID in the specified TPC set.

Definition at line 5256 of file GeometryCore.h.

5257  { return ROP_id_iterator(this, GetEndROPID(ID)); }
readout::ROPID GetEndROPID(geo::CryostatID const &id) const
unsigned int ID
details::ROP_id_iterator_base< readout::ROPID > ROP_id_iterator
Forward iterator browsing all readout planes in the detector.
TPC_iterator geo::GeometryCore::end_TPC ( ) const
inline

Returns an iterator pointing after the last TPC in the detector.

Definition at line 2568 of file GeometryCore.h.

2569  { return TPC_iterator(this, TPC_iterator::end_pos); }
geo::TPC_iterator TPC_iterator
Forward-iterator browsing all TPCs in the detector.
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
TPC_iterator geo::GeometryCore::end_TPC ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing after the last TPC in the detector.

Definition at line 2576 of file GeometryCore.h.

2577  { return TPC_iterator(this, GetEndTPCID(cid)); }
geo::TPCID GetEndTPCID(geo::CryostatID const &id) const
geo::TPC_iterator TPC_iterator
Forward-iterator browsing all TPCs in the detector.
TPC_id_iterator geo::GeometryCore::end_TPC_id ( ) const
inline

Returns an iterator pointing after the last TPC ID in the detector.

Definition at line 2550 of file GeometryCore.h.

2551  { return TPC_id_iterator(this, TPC_id_iterator::end_pos); }
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::TPC_id_iterator TPC_id_iterator
Forward-iterator browsing all TPC IDs in the detector.
TPC_id_iterator geo::GeometryCore::end_TPC_id ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing after the last TPC ID in the specified cryostat.

Definition at line 2560 of file GeometryCore.h.

2561  { return TPC_id_iterator(this, GetEndTPCID(cid)); }
geo::TPCID GetEndTPCID(geo::CryostatID const &id) const
geo::TPC_id_iterator TPC_id_iterator
Forward-iterator browsing all TPC IDs in the detector.
TPCset_id_iterator geo::GeometryCore::end_TPCset_id ( ) const
inline

Returns an iterator pointing after the last TPC set ID in the detector.

Definition at line 5001 of file GeometryCore.h.

static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
details::TPCset_id_iterator_base< readout::TPCsetID > TPCset_id_iterator
Forward iterator browsing all TPC sets in the detector.
TPCset_id_iterator geo::GeometryCore::end_TPCset_id ( geo::CryostatID const &  cid) const
inline

Returns an iterator pointing after the last TPC set ID in the specified cryostat.

Definition at line 5011 of file GeometryCore.h.

5012  { return TPCset_id_iterator(this, GetEndTPCsetID(cid)); }
readout::TPCsetID GetEndTPCsetID(geo::CryostatID const &id) const
details::TPCset_id_iterator_base< readout::TPCsetID > TPCset_id_iterator
Forward iterator browsing all TPC sets in the detector.
wire_iterator geo::GeometryCore::end_wire ( ) const
inline

Returns an iterator pointing after the last wire in the detector.

Definition at line 3508 of file GeometryCore.h.

3509  { return wire_iterator(this, wire_iterator::end_pos); }
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::end_wire ( geo::CryostatID const &  id) const
inline

Returns an iterator pointing after the last wire in specified cryostat.

Definition at line 3516 of file GeometryCore.h.

3517  { return wire_iterator(end_wire_id(id)); }
wire_id_iterator end_wire_id() const
Returns an iterator pointing after the last wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::end_wire ( geo::TPCID const &  id) const
inline

Returns an iterator pointing after the last wire in specified TPC.

Definition at line 3524 of file GeometryCore.h.

3525  { return wire_iterator(end_wire_id(id)); }
wire_id_iterator end_wire_id() const
Returns an iterator pointing after the last wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_iterator geo::GeometryCore::end_wire ( geo::PlaneID const &  id) const
inline

Returns an iterator pointing after the last wire in specified plane.

Definition at line 3532 of file GeometryCore.h.

3533  { return wire_iterator(end_wire_id(id)); }
wire_id_iterator end_wire_id() const
Returns an iterator pointing after the last wire ID in the detector.
geo::wire_iterator wire_iterator
Forward-iterator browsing all wires in the detector.
wire_id_iterator geo::GeometryCore::end_wire_id ( ) const
inline

Returns an iterator pointing after the last wire ID in the detector.

Definition at line 3475 of file GeometryCore.h.

3476  { return wire_id_iterator(this, wire_id_iterator::end_pos); }
static constexpr EndPos_t end_pos
Definition: GeometryCore.h:108
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::end_wire_id ( geo::CryostatID const &  id) const
inline

Returns an iterator pointing after the last wire ID in specified cryostat.

Definition at line 3484 of file GeometryCore.h.

3485  { return wire_id_iterator(this, GetEndWireID(id)); }
geo::WireID GetEndWireID(geo::CryostatID const &id) const
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::end_wire_id ( geo::TPCID const &  id) const
inline

Returns an iterator pointing after the last wire ID in specified TPC.

Definition at line 3492 of file GeometryCore.h.

3493  { return wire_id_iterator(this, GetEndWireID(id)); }
geo::WireID GetEndWireID(geo::CryostatID const &id) const
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
wire_id_iterator geo::GeometryCore::end_wire_id ( geo::PlaneID const &  id) const
inline

Returns an iterator pointing after the last wire ID in specified plane.

Definition at line 3500 of file GeometryCore.h.

3501  { return wire_id_iterator(this, GetEndWireID(id)); }
geo::WireID GetEndWireID(geo::CryostatID const &id) const
geo::wire_id_iterator wire_id_iterator
Forward-iterator browsing all wire IDs in the detector.
std::vector< std::vector< TGeoNode const * > > geo::GeometryCore::FindAllVolumePaths ( std::set< std::string > const &  vol_names) const

Returns paths of all nodes with volumes with the specified names.

Parameters
vol_nameslist of names of volumes
Returns
list paths of the found nodes

All the nodes in the geometry are checked, and the path of all the ones that contain a volume with a name among the ones specified in vol_names is saved in the collection and returned. A node path is a ordered list of all nodes leading to the final one, starting from thetop level (root) down. The node at the back() of the path is the one with name in vol_names. No empty paths are returned.

Definition at line 723 of file GeometryCore.cxx.

724  {
725  CollectPathsByName path_collector(vol_names);
726 
727  ROOTGeoNodeForwardIterator iNode(ROOTGeoManager()->GetTopNode());
728 
729  while (*iNode) {
730  path_collector(iNode);
731  ++iNode;
732  } // while
733 
734  return path_collector.paths;
735  } // GeometryCore::FindAllVolumePaths()
TGeoManager * ROOTGeoManager() const
Access to the ROOT geometry description manager.
std::vector< TGeoNode const * > geo::GeometryCore::FindAllVolumes ( std::set< std::string > const &  vol_names) const

Returns all the nodes with volumes with any of the specified names.

Parameters
vol_nameslist of names of volumes
Returns
list of nodes found

All the nodes in the geometry are checked, and all the ones that contain a volume with a name among the ones specified in vol_names are saved in the collection and returned.

Definition at line 706 of file GeometryCore.cxx.

707  {
708  CollectNodesByName node_collector(vol_names);
709 
710  ROOTGeoNodeForwardIterator iNode(ROOTGeoManager()->GetTopNode());
711  TGeoNode const* pCurrentNode;
712 
713  while ((pCurrentNode = *iNode)) {
714  node_collector(*pCurrentNode);
715  ++iNode;
716  } // while
717 
718  return node_collector.nodes;
719  } // GeometryCore::FindAllVolumes()
TGeoManager * ROOTGeoManager() const
Access to the ROOT geometry description manager.
unsigned int geo::GeometryCore::FindAuxDetAtPosition ( double const  worldLoc[3],
double  tolerance = 0 
) const

Returns the index of the auxiliary detector at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
tolerancetolerance (cm) for matches. Default 0
Returns
the index of the detector, or std::numeric_limits<unsigned int>max() if no detector is there
Bug:
Actually, an exception is thrown.
Deprecated:
Use the version with geo::Point_t.

Definition at line 505 of file GeometryCore.cxx.

unsigned int FindAuxDetAtPosition(double const worldLoc[3], double tolerance=0) const
Returns the index of the auxiliary detector at specified location.
auto const tolerance
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
unsigned int geo::GeometryCore::FindAuxDetAtPosition ( geo::Point_t const &  point,
double  tolerance = 0 
) const

Returns the index of the auxiliary detector at specified location.

Parameters
pointlocation to be tested
tolerancetolerance (cm) for matches. Default 0
Returns
the index of the detector, or std::numeric_limits<unsigned int>max() if no detector is there
Bug:
Actually, an exception is thrown.

Definition at line 496 of file GeometryCore.cxx.

497  {
498  // BUG the double brace syntax is required to work around clang bug 21629
499  // (https://bugs.llvm.org/show_bug.cgi?id=21629)
500  std::array<double, 3U> worldPos = {{ point.X(), point.Y(), point.Z() }};
501  return fChannelMapAlg->NearestAuxDet(worldPos.data(), AuxDets(), tolerance);
502  } // GeometryCore::FindAuxDetAtPosition()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
auto const tolerance
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
void geo::GeometryCore::FindAuxDetSensitiveAtPosition ( geo::Point_t const &  point,
std::size_t &  adg,
std::size_t &  sv,
double  tolerance = 0 
) const

Fills the indices of the sensitive auxiliary detector at location.

Parameters
pointlocation to be tested
adg_(output)_ auxiliary detector index
sv_(output)_ sensitive volume index
tolerancetolerance (cm) for matches. Default 0.

Definition at line 525 of file GeometryCore.cxx.

526  {
527  adg = FindAuxDetAtPosition(point, tolerance);
528  // BUG the double brace syntax is required to work around clang bug 21629
529  // (https://bugs.llvm.org/show_bug.cgi?id=21629)
530  std::array<double, 3U> const worldPos = {{ point.X(), point.Y(), point.Z() }};
531  sv = fChannelMapAlg->NearestSensitiveAuxDet(worldPos.data(), AuxDets(), tolerance);
532  } // GeometryCore::FindAuxDetAtPosition()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int FindAuxDetAtPosition(double const worldLoc[3], double tolerance=0) const
Returns the index of the auxiliary detector at specified location.
auto const tolerance
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
void geo::GeometryCore::FindAuxDetSensitiveAtPosition ( double const  worldLoc[3],
size_t &  adg,
size_t &  sv,
double  tolerance = 0 
) const

Fills the indices of the sensitive auxiliary detector at location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
adg(output) auxiliary detector index
sv(output) sensitive volume index
tolerancetolerance (cm) for matches. Default 0.
Deprecated:
Use the version with geo::Point_t.

Definition at line 536 of file GeometryCore.cxx.

void FindAuxDetSensitiveAtPosition(geo::Point_t const &point, std::size_t &adg, std::size_t &sv, double tolerance=0) const
Fills the indices of the sensitive auxiliary detector at location.
auto const tolerance
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::CryostatID::CryostatID_t geo::GeometryCore::FindCryostatAtPosition ( geo::Point_t const &  worldLoc) const

Returns the index of the cryostat at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
Returns
the index of the cryostat, or UINT_MAX if no cryostat is there
Deprecated:
Use PositionToCryostatID() instead

Definition at line 393 of file GeometryCore.cxx.

394  {
395  geo::CryostatGeo const* cryo = PositionToCryostatPtr(worldLoc);
396  return cryo? cryo->ID().Cryostat: geo::CryostatID::InvalidID;
397  } // GeometryCore::FindCryostatAtPosition(Point)
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
static constexpr CryostatID_t InvalidID
Special code for an invalid ID.
Definition: geo_types.h:208
geo::CryostatID const & ID() const
Returns the identifier of this cryostat.
Definition: CryostatGeo.h:132
geo::CryostatID::CryostatID_t geo::GeometryCore::FindCryostatAtPosition ( double const  worldLoc[3]) const

Definition at line 402 of file GeometryCore.cxx.

403  {
405  } // GeometryCore::FindCryostatAtPosition(double[])
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::CryostatID::CryostatID_t FindCryostatAtPosition(geo::Point_t const &worldLoc) const
Returns the index of the cryostat at specified location.
std::vector< TGeoNode const * > geo::GeometryCore::FindDetectorEnclosure ( std::string const &  name = "volDetEnclosure") const
private

Definition at line 998 of file GeometryCore.cxx.

999  {
1000  std::vector<TGeoNode const*> path { ROOTGeoManager()->GetTopNode() };
1001  if (!FindFirstVolume(name, path)) path.clear();
1002  return path;
1003  } // FindDetectorEnclosure()
static QCString name
Definition: declinfo.cpp:673
bool FindFirstVolume(std::string const &name, std::vector< const TGeoNode * > &path) const
TGeoManager * ROOTGeoManager() const
Access to the ROOT geometry description manager.
bool geo::GeometryCore::FindFirstVolume ( std::string const &  name,
std::vector< const TGeoNode * > &  path 
) const
private

Definition at line 1007 of file GeometryCore.cxx.

1008  {
1009  assert(!path.empty());
1010 
1011  auto const* pCurrent = path.back();
1012 
1013  // first check the current layer
1014  if (strncmp(name.c_str(), pCurrent->GetName(), name.length()) == 0)
1015  return true;
1016 
1017  //explore the next layer down
1018  auto const* pCurrentVolume = pCurrent->GetVolume();
1019  unsigned int nd = pCurrentVolume->GetNdaughters();
1020  for(unsigned int i = 0; i < nd; ++i) {
1021  path.push_back(pCurrentVolume->GetNode(i));
1022  if (FindFirstVolume(name, path)) return true;
1023  path.pop_back();
1024  } // for
1025  return false;
1026  } // FindFirstVolume()
static QCString name
Definition: declinfo.cpp:673
uint length() const
Definition: qcstring.h:195
bool FindFirstVolume(std::string const &name, std::vector< const TGeoNode * > &path) const
geo::TPCID geo::GeometryCore::FindTPCAtPosition ( double const  worldLoc[3]) const
inline

Returns the ID of the TPC at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame) [cm]
Returns
the TPC ID, or an invalid one if no TPC is there

Definition at line 2454 of file GeometryCore.h.

2455  { return FindTPCAtPosition(geo::vect::makePointFromCoords(worldLoc)); }
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::TPCID FindTPCAtPosition(double const worldLoc[3]) const
Returns the ID of the TPC at specified location.
geo::TPCID geo::GeometryCore::FindTPCAtPosition ( geo::Point_t const &  point) const

Returns the ID of the TPC at specified location.

Parameters
worldLoc3D point (world reference frame, centimeters)
Returns
the TPC ID, or an invalid one if no TPC is there

Definition at line 352 of file GeometryCore.cxx.

352  {
353 
354  // first find the cryostat
355  geo::CryostatGeo const* cryo = PositionToCryostatPtr(point);
356  if (!cryo) return {};
357 
358  // then ask it about the TPC
359  geo::TPCID tpcid = cryo->PositionToTPCID(point, 1. + fPositionWiggle);
360  if (tpcid) return tpcid;
361 
362  // return an invalid TPC ID with cryostat information set:
363  tpcid.Cryostat = cryo->ID().Cryostat;
364  tpcid.markInvalid();
365  return tpcid;
366 
367  } // GeometryCore::FindTPCAtPosition()
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
void markInvalid()
Sets the ID as invalid.
Definition: geo_types.h:240
double fPositionWiggle
accounting for rounding errors when testing positions
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
geo::TPCID PositionToTPCID(geo::Point_t const &point, double wiggle) const
Returns the ID of the TPC at specified location.
geo::CryostatID const & ID() const
Returns the identifier of this cryostat.
Definition: CryostatGeo.h:132
geo::TPCID geo::GeometryCore::FindTPCAtPosition ( TVector3 const &  point) const
inline

Definition at line 2464 of file GeometryCore.h.

2465  { return FindTPCAtPosition(geo::vect::toPoint(point)); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
geo::TPCID FindTPCAtPosition(double const worldLoc[3]) const
Returns the ID of the TPC at specified location.
readout::TPCsetID geo::GeometryCore::FindTPCsetAtPosition ( double const  worldLoc[3]) const

Returns the ID of the TPC set at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
Returns
the TPC set ID, or an invalid one if no TPC set is there

Definition at line 1691 of file GeometryCore.cxx.

1692  {
1693  return TPCtoTPCset(FindTPCAtPosition(worldLoc));
1694  } // GeometryCore::FindTPCsetAtPosition()
readout::TPCsetID TPCtoTPCset(geo::TPCID const &tpcid) const
Returns the ID of the TPC set tpcid belongs to.
geo::TPCID FindTPCAtPosition(double const worldLoc[3]) const
Returns the ID of the TPC at specified location.
raw::ChannelID_t geo::GeometryCore::FirstChannelInROP ( readout::ROPID const &  ropid) const

Returns the ID of the first channel in the specified readout plane.

Parameters
ropidID of the readout plane
Returns
ID of first channel, or raw::InvalidChannelID if ID is invalid

Note that this check is performed on the validity of the readout plane ID, that does not necessarily imply that the readout plane specified by the ID actually exists. Check if the ROP exists with HasROP(). The behaviour for non-existing readout planes is undefined.

Definition at line 1758 of file GeometryCore.cxx.

1759  {
1760  return fChannelMapAlg->FirstChannelInROP(ropid);
1761  } // GeometryCore::FirstChannelInROP()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
std::string geo::GeometryCore::GDMLFile ( ) const
inline

Returns the full directory path to the GDML file source.

Returns
the full directory path to the GDML file source

This is the full path of the source of the detector geometry handed to the detector simulation (GEANT).

Definition at line 1749 of file GeometryCore.h.

1749 { return fGDMLfile; }
std::string fGDMLfile
path to geometry file used for Geant4 simulation
template<typename GeoID >
GeoID geo::GeometryCore::GetBeginID ( ) const
inline

Returns the ID of the first element of the detector.

Template Parameters
GeoIDtype of the ID to be returned
Returns
ID of the first subelement in the detector

Definition at line 1933 of file GeometryCore.h.

1933 { GeoID id; GetBeginID(id); return id; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
template<typename GeoID , typename ContextID >
GeoID geo::GeometryCore::GetBeginID ( ContextID const &  id) const

Returns the ID of the first subelement of the specified element.

Template Parameters
GeoIDtype of the ID to be returned
ContextIDtype of the ID of the containing element
Parameters
idID of the containing element
Returns
ID of the first subelement in the specified geometry element
void geo::GeometryCore::GetBeginID ( geo::CryostatID id) const
inline

Initializes the specified ID with the ID of the first cryostat.

Definition at line 2134 of file GeometryCore.h.

2135  { id = geo::CryostatID(0, HasCryostat(geo::CryostatID(0))); }
IDparameter< geo::CryostatID > CryostatID
Member type of validated geo::CryostatID parameter.
bool HasCryostat(geo::CryostatID const &cryoid) const
Returns whether we have the specified cryostat.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
void geo::GeometryCore::GetBeginID ( geo::TPCID id) const
inline

Initializes the specified ID with the ID of the first TPC.

iterators

Definition at line 2524 of file GeometryCore.h.

2525  { GetBeginID(id.asCryostatID()); id.TPC = 0; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
void geo::GeometryCore::GetBeginID ( geo::PlaneID id) const
inline

Initializes the specified ID with the ID of the first plane.

Definition at line 3026 of file GeometryCore.h.

3027  { GetBeginID(id.asTPCID()); id.Plane = 0; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
void geo::GeometryCore::GetBeginID ( geo::WireID id) const
inline

Initializes the specified ID with the ID of the first wire.

Definition at line 3432 of file GeometryCore.h.

3433  { GetBeginID(id.asPlaneID()); id.Wire = 0; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
void geo::GeometryCore::GetBeginID ( readout::TPCsetID id) const
inline

Initializes the specified ID with the ID of the first TPC set.

iterators

Definition at line 4975 of file GeometryCore.h.

4976  { GetBeginID(id.asCryostatID()); id.TPCset = 0; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
void geo::GeometryCore::GetBeginID ( readout::ROPID id) const
inline

Initializes the specified ID with the ID of the first readout plane.

iterators

Definition at line 5202 of file GeometryCore.h.

5203  { GetBeginID(id.asTPCsetID()); id.ROP = 0; }
GeoID GetBeginID() const
Returns the ID of the first element of the detector.
geo::PlaneID geo::GeometryCore::GetBeginPlaneID ( geo::CryostatID const &  id) const
inline

Returns the ID of the first plane of the specified cryostat.

Definition at line 3038 of file GeometryCore.h.

3039  { return { GetBeginTPCID(id), 0 }; }
geo::TPCID GetBeginTPCID(geo::CryostatID const &id) const
Returns the ID of the first TPC in the specified cryostat.
geo::PlaneID geo::GeometryCore::GetBeginPlaneID ( geo::TPCID const &  id) const
inline

Returns the ID of the first plane of the specified TPC.

Definition at line 3047 of file GeometryCore.h.

3048  { return { id, 0 }; }
readout::ROPID geo::GeometryCore::GetBeginROPID ( geo::CryostatID const &  id) const
inline

Returns the ID of the first readout plane of the specified cryostat.

Definition at line 5214 of file GeometryCore.h.

5215  { return { GetBeginTPCsetID(id), 0 }; }
readout::TPCsetID GetBeginTPCsetID(geo::CryostatID const &id) const
Returns the ID of the first TPC set in the specified cryostat.
readout::ROPID geo::GeometryCore::GetBeginROPID ( readout::TPCsetID const &  id) const
inline

Returns the ID of the first readout plane of the specified TPC set.

Definition at line 5223 of file GeometryCore.h.

5224  { return { id, 0 }; }
geo::TPCID geo::GeometryCore::GetBeginTPCID ( geo::CryostatID const &  id) const
inline

Returns the ID of the first TPC in the specified cryostat.

Definition at line 2536 of file GeometryCore.h.

2537  { return { id, 0 }; }
readout::TPCsetID geo::GeometryCore::GetBeginTPCsetID ( geo::CryostatID const &  id) const
inline

Returns the ID of the first TPC set in the specified cryostat.

Definition at line 4987 of file GeometryCore.h.

4988  { return { id, 0 }; }
geo::WireID geo::GeometryCore::GetBeginWireID ( geo::CryostatID const &  id) const
inline

Returns the ID of the first wire in the specified cryostat.

Definition at line 3444 of file GeometryCore.h.

3445  { return { GetBeginPlaneID(id), 0 }; }
geo::PlaneID GetBeginPlaneID(geo::CryostatID const &id) const
Returns the ID of the first plane of the specified cryostat.
geo::WireID geo::GeometryCore::GetBeginWireID ( geo::TPCID const &  id) const
inline

Returns the ID of the first wire of the specified TPC.

Definition at line 3453 of file GeometryCore.h.

3454  { return { geo::PlaneID(id, 0), 0 }; }
detail::Node< FrameID, bool > PlaneID
Definition: CRTID.h:125
geo::WireID geo::GeometryCore::GetBeginWireID ( geo::PlaneID const &  id) const
inline

Returns the ID of the first wire of the specified wire plane.

Definition at line 3462 of file GeometryCore.h.

3463  { return { id, 0 }; }
unsigned int geo::GeometryCore::GetClosestOpDet ( geo::Point_t const &  point) const

Find the nearest OpChannel to some point.

Parameters
xyzpoint to be queried, in world coordinates
Returns
the nearest OpChannel to the point, or std::numeric_limits<unsigned int>max() if invalid point
Deprecated:
This method does not tell in which cryostat the detector is; use geo::CryostatGeo::GetClosestOpDet() instead (find the cryostat with PositionToCryostatPtr()).

Definition at line 1867 of file GeometryCore.cxx.

1868  {
1869  geo::CryostatGeo const* cryo = PositionToCryostatPtr(point);
1870  if (!cryo) return std::numeric_limits<unsigned int>::max();
1871  int o = cryo->GetClosestOpDet(point);
1872  return OpDetFromCryo(o, cryo->ID().Cryostat);
1873  }
unsigned int GetClosestOpDet(geo::Point_t const &point) const
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
unsigned int OpDetFromCryo(unsigned int o, unsigned int c) const
Get unique opdet number from cryo and internal count.
static int max(int a, int b)
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
geo::CryostatID const & ID() const
Returns the identifier of this cryostat.
Definition: CryostatGeo.h:132
unsigned int geo::GeometryCore::GetClosestOpDet ( double const *  point) const

Definition at line 1878 of file GeometryCore.cxx.

unsigned int GetClosestOpDet(geo::Point_t const &point) const
Find the nearest OpChannel to some point.
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
std::string geo::GeometryCore::GetCryostatVolumeName ( geo::CryostatID const &  cid) const

Return the name of LAr TPC volume.

Parameters
cstatindex of the cryostat
Returns
the name of the specified TPC

This information is used in the event display.

Todo:

Use a cryostat ID instead

What if it does not exist?

Definition at line 746 of file GeometryCore.cxx.

747  {
748  return std::string(Cryostat(cid).Volume()->GetName());
749  }
std::string string
Definition: nybbler.cc:12
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
std::string geo::GeometryCore::GetCryostatVolumeName ( unsigned int const  cstat = 0) const
inline

Definition at line 2280 of file GeometryCore.h.

2281  { return GetCryostatVolumeName(geo::CryostatID(cstat)); }
std::string GetCryostatVolumeName(geo::CryostatID const &cid) const
Return the name of LAr TPC volume.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
CryostatGeo const& geo::GeometryCore::GetElement ( geo::CryostatID const &  cryoid) const
inline

Definition at line 2033 of file GeometryCore.h.

2034  { return Cryostat(cryoid); }
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
TPCGeo const& geo::GeometryCore::GetElement ( geo::TPCID const &  tpcid) const
inline

Definition at line 2427 of file GeometryCore.h.

2428  { return TPC(tpcid); }
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
PlaneGeo const& geo::GeometryCore::GetElement ( geo::PlaneID const &  planeid) const
inline

Definition at line 2999 of file GeometryCore.h.

3000  { return Plane(planeid); }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
WireGeo const& geo::GeometryCore::GetElement ( geo::WireID const &  wireid) const
inline

Definition at line 3423 of file GeometryCore.h.

3424  { return Wire(wireid); }
WireGeo const & Wire(geo::WireID const &wireid) const
Returns the specified wire.
CryostatGeo const* geo::GeometryCore::GetElementPtr ( geo::CryostatID const &  cryoid) const
inline

Definition at line 2048 of file GeometryCore.h.

2049  { return CryostatPtr(cryoid); }
CryostatGeo const * CryostatPtr(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
TPCGeo const* geo::GeometryCore::GetElementPtr ( geo::TPCID const &  tpcid) const
inline

Definition at line 2445 of file GeometryCore.h.

2446  { return TPCPtr(tpcid); }
TPCGeo const * TPCPtr(geo::TPCID const &tpcid) const
Returns the specified TPC.
PlaneGeo const* geo::GeometryCore::GetElementPtr ( geo::PlaneID const &  planeid) const
inline

Definition at line 3017 of file GeometryCore.h.

3018  { return PlanePtr(planeid); }
PlaneGeo const * PlanePtr(geo::PlaneID const &planeid) const
Returns the specified plane.
WireGeo const* geo::GeometryCore::GetElementPtr ( geo::WireID const &  wireid) const
inline

Definition at line 3405 of file GeometryCore.h.

3406  { return WirePtr(wireid); }
WireGeo const * WirePtr(geo::WireID const &wireid) const
Returns the specified wire.
template<typename GeoID >
GeoID geo::GeometryCore::GetEndID ( ) const
inline

Returns the (possibly invalid) ID after the last subelement of the detector.

Template Parameters
GeoIDtype of the ID to be returned
Returns
ID after the last subelement in the specified geometry element

Definition at line 1952 of file GeometryCore.h.

1952 { GeoID id; GetEndID(id); return id; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
template<typename GeoID , typename ContextID >
GeoID geo::GeometryCore::GetEndID ( ContextID const &  id) const

Returns the (possibly invalid) ID after the last subelement of the specified element.

Template Parameters
GeoIDtype of the ID to be returned
ContextIDtype of the ID of the containing element
Parameters
idID of the containing element
Returns
ID (possibly invalid) after the last subelement in the specified geometry element
void geo::GeometryCore::GetEndID ( geo::CryostatID id) const
inline

Initializes the specified ID with the invalid ID after the last cryostat.

Definition at line 2138 of file GeometryCore.h.

2139  { id = geo::CryostatID(Ncryostats(), false); }
IDparameter< geo::CryostatID > CryostatID
Member type of validated geo::CryostatID parameter.
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
void geo::GeometryCore::GetEndID ( geo::TPCID id) const
inline

Initializes the specified ID with the invalid ID after the last TPC.

Definition at line 2528 of file GeometryCore.h.

2529  { GetEndID(id.asCryostatID()); id.TPC = 0; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
void geo::GeometryCore::GetEndID ( geo::PlaneID id) const
inline

Initializes the specified ID with the invalid ID after the last plane.

Definition at line 3030 of file GeometryCore.h.

3031  { GetEndID(id.asTPCID()); id.Plane = 0; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
void geo::GeometryCore::GetEndID ( geo::WireID id) const
inline

Initializes the specified ID with the invalid ID after the last wire.

Definition at line 3436 of file GeometryCore.h.

3437  { GetEndID(id.asPlaneID()); id.Wire = 0; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
void geo::GeometryCore::GetEndID ( readout::TPCsetID id) const
inline

Initializes the specified ID with the invalid ID after the last TPC set.

Definition at line 4979 of file GeometryCore.h.

4980  { GetEndID(id.asCryostatID()); id.TPCset = 0; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
void geo::GeometryCore::GetEndID ( readout::ROPID id) const
inline

Initializes the specified ID with the invalid ID after the last ROP.

Definition at line 5206 of file GeometryCore.h.

5207  { GetEndID(id.asTPCsetID()); id.ROP = 0; }
GeoID GetEndID() const
Returns the (possibly invalid) ID after the last subelement of the detector.
geo::PlaneID geo::GeometryCore::GetEndPlaneID ( geo::CryostatID const &  id) const
inline

Returns the (possibly invalid) ID after the last plane of the specified cryostat.

Definition at line 3043 of file GeometryCore.h.

3044  { return { GetEndTPCID(id), 0 }; }
geo::TPCID GetEndTPCID(geo::CryostatID const &id) const
geo::PlaneID geo::GeometryCore::GetEndPlaneID ( geo::TPCID const &  id) const
inline

Returns the (possibly invalid) ID after the last plane of the specified TPC.

Definition at line 3052 of file GeometryCore.h.

3053  { return { GetNextID(id), 0 }; }
GeoID GetNextID(GeoID const &id) const
Returns the ID next to the specified one.
readout::ROPID geo::GeometryCore::GetEndROPID ( geo::CryostatID const &  id) const
inline

Returns the (possibly invalid) ID after the last readout plane of the specified cryostat.

Definition at line 5219 of file GeometryCore.h.

5220  { return { GetEndTPCsetID(id), 0 }; }
readout::TPCsetID GetEndTPCsetID(geo::CryostatID const &id) const
readout::ROPID geo::GeometryCore::GetEndROPID ( readout::TPCsetID const &  id) const
inline

Returns the (possibly invalid) ID after the last readout plane of the specified TPC set.

Definition at line 5228 of file GeometryCore.h.

5229  { return { GetNextID(id), 0 }; }
GeoID GetNextID(GeoID const &id) const
Returns the ID next to the specified one.
geo::TPCID geo::GeometryCore::GetEndTPCID ( geo::CryostatID const &  id) const
inline

Returns the (possibly invalid) ID after the last TPC of the specified cryostat.

Definition at line 2541 of file GeometryCore.h.

2542  { return { id.Cryostat + 1, 0 }; }
readout::TPCsetID geo::GeometryCore::GetEndTPCsetID ( geo::CryostatID const &  id) const
inline

Returns the (possibly invalid) ID after the last TPC set of the specified cryostat.

Definition at line 4992 of file GeometryCore.h.

4993  { return { id.Cryostat + 1, 0 }; }
geo::WireID geo::GeometryCore::GetEndWireID ( geo::CryostatID const &  id) const
inline

Returns the (possibly invalid) ID after the last wire in the specified cryostat.

Definition at line 3449 of file GeometryCore.h.

3450  { return { GetEndPlaneID(id), 0 }; }
geo::PlaneID GetEndPlaneID(geo::CryostatID const &id) const
geo::WireID geo::GeometryCore::GetEndWireID ( geo::TPCID const &  id) const
inline

Returns the (possibly invalid) ID after the last wire of the specified TPC.

Definition at line 3458 of file GeometryCore.h.

3459  { return { geo::PlaneID(GetNextID(id), 0), 0 }; }
detail::Node< FrameID, bool > PlaneID
Definition: CRTID.h:125
GeoID GetNextID(GeoID const &id) const
Returns the ID next to the specified one.
geo::WireID geo::GeometryCore::GetEndWireID ( geo::PlaneID const &  id) const
inline

Returns the (possibly invalid) ID after the last wire of the specified wire plane.

Definition at line 3467 of file GeometryCore.h.

3468  { return { GetNextID(id), 0 }; }
GeoID GetNextID(GeoID const &id) const
Returns the ID next to the specified one.
std::string geo::GeometryCore::GetLArTPCVolumeName ( geo::TPCID const &  tpcid) const

Return the name of specified LAr TPC volume.

Parameters
tpcidID of the TPC
tpcindex of TPC in the cryostat
cstatindex of the cryostat
Returns
the name of the specified TPC

This information is used by Geant4 simulation

Todo:

Use a TPCID instead

What if it does not exist?

Definition at line 740 of file GeometryCore.cxx.

741  {
742  return std::string(TPC(tpcid).ActiveVolume()->GetName());
743  }
std::string string
Definition: nybbler.cc:12
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
std::string geo::GeometryCore::GetLArTPCVolumeName ( unsigned int const  tpc = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 2824 of file GeometryCore.h.

2825  { return GetLArTPCVolumeName(geo::TPCID(cstat, tpc)); }
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
std::string GetLArTPCVolumeName(geo::TPCID const &tpcid) const
Return the name of specified LAr TPC volume.
template<typename GeoID >
GeoID geo::GeometryCore::GetNextID ( GeoID const &  id) const
inline

Returns the ID next to the specified one.

Template Parameters
GeoIDtype of the ID to be returned
Parameters
idthe element ID to be incremented
Returns
ID of the next subelement after id

Definition at line 1942 of file GeometryCore.h.

1943  { auto nextID(id); IncrementID(nextID); return nextID; }
bool IncrementID(geo::CryostatID &id) const
template<typename Point >
Point geo::GeometryCore::GetTPCFrontFaceCenter ( geo::TPCID const &  tpcid) const
inline

Returns the center of side of the detector facing the beam.

Template Parameters
Point_(default: DefaultPoint_t)_ return this point type
Parameters
tpcidID of the TPC
Returns
position of center of TPC face toward the beam, in world coordinates [cm]

Effectively, this is the center of the side of TPC active volume which faces the negative z direction, the first that a beam following the positive z direction crosses.

Definition at line 2777 of file GeometryCore.h.

2778  { return TPC(tpcid).GetFrontFaceCenter<Point>(); }
Point GetFrontFaceCenter() const
Returns the center of the active TPC volume side facing negative z.
Definition: TPCGeo.h:308
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
DefaultPoint_t geo::GeometryCore::GetTPCFrontFaceCenter ( geo::TPCID const &  tpcid) const
inline

Definition at line 2779 of file GeometryCore.h.

2780  { return GetTPCFrontFaceCenter<DefaultPoint_t>(tpcid); }
template<typename Point >
Point geo::GeometryCore::GetTPCFrontFaceCenter ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Returns the center of side of the detector facing the beam.

Template Parameters
Point_(default: DefaultPoint_t)_ return this point type
Parameters
tpc_(default: 0)_ TPC number within the cryostat cstat
cstat_(default: 0)_ number of cryostat
Returns
position of center of TPC face toward the beam, in world coordinates [cm]
See also
GetTPCFrontFaceCenter(geo::TPCID const&)
Note
Please use GetTPCFrontFaceCenter(geo::TPCID const&) instead.

Definition at line 2797 of file GeometryCore.h.

2798  { return GetTPCFrontFaceCenter<Point>(geo::TPCID(cstat, tpc)); }
IDparameter< geo::TPCID > TPCID
Member type of validated geo::TPCID parameter.
DefaultPoint_t geo::GeometryCore::GetTPCFrontFaceCenter ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Definition at line 2800 of file GeometryCore.h.

2801  { return GetTPCFrontFaceCenter<DefaultPoint_t>(tpc, cstat); }
const std::string geo::GeometryCore::GetWorldVolumeName ( ) const

Return the name of the world volume (needed by Geant4 simulation)

Definition at line 619 of file GeometryCore.cxx.

620  {
621  // For now, and possibly forever, this is a constant (given the
622  // definition of "nodeNames" above).
623  return std::string("volWorld");
624  }
std::string string
Definition: nybbler.cc:12
unsigned int geo::GeometryCore::HardwareChannelFromOpChannel ( int  opChannel) const

Convert unique channel to hardware channel.

Definition at line 283 of file GeometryCore.cxx.

284  {
285  return fChannelMapAlg->HardwareChannelFromOpChannel(opChannel);
286  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
bool geo::GeometryCore::HasChannel ( raw::ChannelID_t  channel) const

Returns whether the specified channel exists and is valid.

Parameters
channelthe ID of the channel
Returns
whether the specified channel exists

A channel is defined as existing and valid if its ID is not invalid and if the channel is physical.

Definition at line 607 of file GeometryCore.cxx.

607  {
608  return fChannelMapAlg->HasChannel(channel);
609  } // GeometryCore::HasChannel()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
uint8_t channel
Definition: CRTFragment.hh:201
bool geo::GeometryCore::HasCryostat ( geo::CryostatID const &  cryoid) const
inline

Returns whether we have the specified cryostat.

The HasElement() method is overloaded and its meaning depends on the type of ID.

Definition at line 2011 of file GeometryCore.h.

2012  { return cryoid.Cryostat < Ncryostats(); }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
bool geo::GeometryCore::HasElement ( geo::CryostatID const &  cryoid) const
inline

Definition at line 2013 of file GeometryCore.h.

2014  { return HasCryostat(cryoid); }
bool HasCryostat(geo::CryostatID const &cryoid) const
Returns whether we have the specified cryostat.
bool geo::GeometryCore::HasElement ( geo::TPCID const &  tpcid) const
inline

Returns whether we have the specified TPC.

Definition at line 2404 of file GeometryCore.h.

2404 { return HasTPC(tpcid); }
bool HasTPC(geo::TPCID const &tpcid) const
Returns whether we have the specified TPC.
bool geo::GeometryCore::HasElement ( geo::PlaneID const &  planeid) const
inline

Definition at line 2972 of file GeometryCore.h.

2973  { return HasPlane(planeid); }
bool HasPlane(geo::PlaneID const &planeid) const
Returns whether we have the specified plane.
bool geo::GeometryCore::HasElement ( geo::WireID const &  wireid) const
inline

Definition at line 3388 of file GeometryCore.h.

3388 { return HasWire(wireid); }
bool HasWire(geo::WireID const &wireid) const
Returns whether we have the specified wire.
bool geo::GeometryCore::HasElement ( readout::TPCsetID const &  tpcsetid) const
inline

Returns whether we have the specified TPC set.

Definition at line 4939 of file GeometryCore.h.

4940  { return HasTPCset(tpcsetid); }
bool HasTPCset(readout::TPCsetID const &tpcsetid) const
bool geo::GeometryCore::HasElement ( readout::ROPID const &  ropid) const
inline

Returns whether we have the specified readout plane

Returns
whether the readout plane is valid and exists

Definition at line 5141 of file GeometryCore.h.

5141 { return HasROP(ropid); }
bool HasROP(readout::ROPID const &ropid) const
bool geo::GeometryCore::HasPlane ( geo::PlaneID const &  planeid) const
inline

Returns whether we have the specified plane.

The HasElement() method is overloaded and its meaning depends on the type of ID.

Definition at line 2967 of file GeometryCore.h.

2968  {
2969  geo::TPCGeo const* pTPC = TPCPtr(planeid);
2970  return pTPC? pTPC->HasPlane(planeid): false;
2971  }
bool HasPlane(unsigned int iplane) const
Returns whether a plane with index iplane is present in this TPC.
Definition: TPCGeo.h:175
Geometry information for a single TPC.
Definition: TPCGeo.h:38
TPCGeo const * TPCPtr(geo::TPCID const &tpcid) const
Returns the specified TPC.
bool geo::GeometryCore::HasROP ( readout::ROPID const &  ropid) const

Returns whether we have the specified readout plane

Returns
whether the readout plane is valid and exists

Definition at line 1728 of file GeometryCore.cxx.

1728  {
1729  return fChannelMapAlg->HasROP(ropid);
1730  } // GeometryCore::HasROP()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
bool geo::GeometryCore::HasTPC ( geo::TPCID const &  tpcid) const
inline

Returns whether we have the specified TPC.

Definition at line 2397 of file GeometryCore.h.

2398  {
2399  CryostatGeo const* pCryo = CryostatPtr(tpcid);
2400  return pCryo? pCryo->HasTPC(tpcid): false;
2401  }
CryostatGeo const * CryostatPtr(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
bool geo::GeometryCore::HasTPCset ( readout::TPCsetID const &  tpcsetid) const

Returns whether we have the specified TPC set

Returns
whether the TPC set is valid and exists

Definition at line 1684 of file GeometryCore.cxx.

1684  {
1685  return fChannelMapAlg->HasTPCset(tpcsetid);
1686  } // GeometryCore::HasTPCset()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
bool geo::GeometryCore::HasWire ( geo::WireID const &  wireid) const
inline

Returns whether we have the specified wire.

The HasElement() method is overloaded and its meaning depends on the type of ID.

Definition at line 3383 of file GeometryCore.h.

3384  {
3385  geo::PlaneGeo const* pPlane = PlanePtr(wireid);
3386  return pPlane? pPlane->HasWire(wireid): false;
3387  }
PlaneGeo const * PlanePtr(geo::PlaneID const &planeid) const
Returns the specified plane.
Geometry information for a single wire plane.The plane is represented in the geometry by a solid whic...
Definition: PlaneGeo.h:82
bool HasWire(unsigned int iwire) const
Returns whether a wire with index iwire is present in this plane.
Definition: PlaneGeo.h:279
bool geo::GeometryCore::IncrementID ( geo::CryostatID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5633 of file GeometryCore.h.

5633  {
5634  ++id.Cryostat;
5635  if (id) id.isValid = HasCryostat(id); // if invalid already, it stays so
5636  return bool(id);
5637 } // geo::GeometryCore::IncrementID(geo::CryostatID)
int bool
Definition: qglobal.h:345
bool HasCryostat(geo::CryostatID const &cryoid) const
Returns whether we have the specified cryostat.
bool geo::GeometryCore::IncrementID ( geo::TPCID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5639 of file GeometryCore.h.

5639  {
5640  unsigned int const nTPCsInCryo = NTPC(id);
5641  if (++id.TPC < nTPCsInCryo) return bool(id); // if was invalid, it stays so
5642  // no more TPCs in this cryostat
5643  id.TPC = 0;
5644  return IncrementID(id.asCryostatID()); // also sets validity
5645 } // geo::GeometryCore::IncrementID(geo::TPCID)
bool IncrementID(geo::CryostatID &id) const
unsigned int NTPC(unsigned int cstat=0) const
Returns the total number of TPCs in the specified cryostat.
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
int bool
Definition: qglobal.h:345
bool geo::GeometryCore::IncrementID ( geo::PlaneID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5647 of file GeometryCore.h.

5647  {
5648  // this implementation is non-optimal, in that the cryostat lookup is
5649  // performed both here and, potentially, in IncrementID(TPCID)
5650  unsigned int const nPlanesInTPC = Nplanes(id);
5651  if (++id.Plane < nPlanesInTPC) return bool(id); // if was invalid, stays so
5652  // no more planes in this TPCs
5653  id.Plane = 0;
5654  return IncrementID(id.asTPCID()); // also sets validity
5655 } // geo::GeometryCore::IncrementID(geo::PlaneID)
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
bool IncrementID(geo::CryostatID &id) const
unsigned int Nplanes(unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wire planes in the specified TPC.
int bool
Definition: qglobal.h:345
bool geo::GeometryCore::IncrementID ( geo::WireID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5657 of file GeometryCore.h.

5657  {
5658  // this implementation is non-optimal, in that the TPC lookup is
5659  // performed both here and, potentially, in IncrementID(PlaneID)
5660  unsigned int const nWiresInPlane = Nwires(id);
5661  if (++id.Wire < nWiresInPlane) return bool(id); // if was invalid, stays so
5662  // no more wires in this plane
5663  id.Wire = 0;
5664  return IncrementID(id.asPlaneID()); // also sets validity
5665 } // geo::GeometryCore::IncrementID(geo::WireID)
unsigned int Nwires(unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wires in the specified plane.
bool IncrementID(geo::CryostatID &id) const
WireGeo const & Wire(geo::WireID const &wireid) const
Returns the specified wire.
int bool
Definition: qglobal.h:345
bool geo::GeometryCore::IncrementID ( readout::TPCsetID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5667 of file GeometryCore.h.

5667  {
5668  unsigned int const nTPCsetsInCryo = NTPCsets(id);
5669  if (++id.TPCset < nTPCsetsInCryo)
5670  return bool(id); // if was invalid, it stays so
5671  // no more TPC sets in this cryostat
5672  id.TPCset = 0;
5673  return IncrementID(id.asCryostatID()); // also sets validity
5674 } // geo::GeometryCore::IncrementID(readout::TPCsetID)
unsigned int NTPCsets(readout::CryostatID const &cryoid) const
Returns the total number of TPC sets in the specified cryostat.
bool IncrementID(geo::CryostatID &id) const
int bool
Definition: qglobal.h:345
bool geo::GeometryCore::IncrementID ( readout::ROPID id) const
inline

Sets the ID to the ID after the specified one.

Returns
whether the ID is actually valid (validity flag is also set)

Definition at line 5676 of file GeometryCore.h.

5676  {
5677  // this implementation is non-optimal, in that the cryostat lookup is
5678  // performed both here and, potentially, in IncrementID(TPCsetID)
5679  unsigned int const nROPinTPC = NROPs(id);
5680  if (++id.ROP < nROPinTPC) return bool(id); // if was invalid, stays so
5681  // no more readout planes in this TPC set
5682  id.ROP = 0;
5683  return IncrementID(id.asTPCsetID()); // also sets validity
5684 } // geo::GeometryCore::IncrementID(readout::ROPID)
bool IncrementID(geo::CryostatID &id) const
unsigned int NROPs(readout::TPCsetID const &tpcsetid) const
Returns the total number of ROP in the specified TPC set.
int bool
Definition: qglobal.h:345
std::string geo::GeometryCore::Info ( std::string  indent = "  ") const

Returns a string with complete geometry information.

See also
Print()

Definition at line 1098 of file GeometryCore.cxx.

1098  {
1099  std::ostringstream sstr;
1100  Print(sstr, indent);
1101  return sstr.str();
1102  } // GeometryCore::Info()
void Print(Stream &&out, std::string indent=" ") const
Prints geometry information with maximum verbosity.
bool geo::GeometryCore::IntersectionPoint ( geo::WireID const &  wid1,
geo::WireID const &  wid2,
double &  y,
double &  z 
) const

Returns the intersection point of two wires.

Parameters
wid1ID of the first wire
wid2ID of the other wire
y(output) y coordinate of the intersection point
z(output) z coordinate of the intersection point
Returns
whether an intersection was found within the TPC
See also
WireIDsIntersect()

The behaviour of this method reflects the one of WireIDsIntersect(), which supersedes this one.

To test if the result is infinity, use e.g. std::isfinite(y).

Deprecated:
This method uses arbitrary assumptions and should not be used. Use WireIDsIntersect() returning a vector, instead.

Definition at line 1657 of file GeometryCore.cxx.

1660  {
1661  geo::WireIDIntersection widIntersect;
1662  bool const found = WireIDsIntersect(wid1, wid2, widIntersect);
1663  y = widIntersect.y;
1664  z = widIntersect.z;
1665  return found;
1666  }
double z
z position of intersection
Definition: geo_types.h:805
bool WireIDsIntersect(WireID const &wid1, WireID const &wid2, geo::Point_t &intersection) const
Computes the intersection between two wires.
double y
y position of intersection
Definition: geo_types.h:804
bool geo::GeometryCore::IntersectionPoint ( unsigned int  wire1,
unsigned int  wire2,
unsigned int  plane1,
unsigned int  plane2,
unsigned int  cstat,
unsigned int  tpc,
double &  y,
double &  z 
) const
inline

Returns the intersection point of two wires.

Parameters
wire1wire index of the first wire
wire2wire index of the other wire
plane1plane index of the first wire
plane2plane index of the other wire
cstatcryostat number
tpctpc number within the cryostat where the planes belong
y(output) y coordinate of the intersection point
z(output) z coordinate of the intersection point
Returns
whether an intersection was found

No check is performed, not any information provided, about the validity of the result.

Deprecated:
This method uses arbitrary assumptions and should not be used. Use WireIDsIntersect() returning a vector, instead.

Definition at line 4259 of file GeometryCore.h.

4267  {
4268  return IntersectionPoint(
4269  geo::WireID(cstat, tpc, plane1, wire1),
4270  geo::WireID(cstat, tpc, plane2, wire2),
4271  y, z
4272  );
4273  }
bool IntersectionPoint(geo::WireID const &wid1, geo::WireID const &wid2, double &y, double &z) const
Returns the intersection point of two wires.
bool geo::GeometryCore::IntersectLines ( double  A_start_x,
double  A_start_y,
double  A_end_x,
double  A_end_y,
double  B_start_x,
double  B_start_y,
double  B_end_x,
double  B_end_y,
double &  x,
double &  y 
) const

Computes the intersection between two lines on a plane.

Parameters
A_start_xx coordinate of one point of the first segment
A_start_yy coordinate of one point of the first segment
A_end_xx coordinate of another point of the first segment
A_end_yy coordinate of another point of the first segment
B_start_xx coordinate of one point of the second segment
B_start_yy coordinate of one point of the second segment
B_end_xx coordinate of another point of the second segment
B_end_yy coordinate of another point of the second segment
x_(output)_ variable to store the x coordinate of intersection
y_(output)_ variable to store the y coordinate of intersection
Returns
whether intersection exists

The order of the ends is not relevant. The return value is false if the two segments are parallel. In that case, x and y variables are not changed. Otherwise, they hold the intersection coordinate, even if the intersection point is beyond one or both the segments.

Definition at line 1320 of file GeometryCore.cxx.

1324  {
1325 
1326  // Equation from http://en.wikipedia.org/wiki/Line%E2%80%93line_intersection
1327  // T.Yang Nov, 2014
1328  // Notation: x => coordinate orthogonal to the drift direction and to the beam direction
1329  // y => direction orthogonal to the previous and to beam direction
1330 
1331  double const denom = (A_start_x - A_end_x)*(B_start_y - B_end_y)
1332  - (A_start_y - A_end_y)*(B_start_x - B_end_x);
1333 
1334  if (coordIs.zero(denom)) return false;
1335 
1336  double const A = (A_start_x * A_end_y - A_start_y * A_end_x) / denom;
1337  double const B = (B_start_x * B_end_y - B_start_y * B_end_x) / denom;
1338 
1339  x = (B_start_x - B_end_x) * A - (A_start_x - A_end_x) * B;
1340  y = (B_start_y - B_end_y) * A - (A_start_y - A_end_y) * B;
1341 
1342  return true;
1343 
1344  } // GeometryCore::IntersectLines()
constexpr bool zero(Value_t value) const
Returns whether the value is no farther from 0 than the threshold.
static lar::util::RealComparisons< geo::Length_t > coordIs
Value of tolerance for equality comparisons.
list x
Definition: train.py:276
bool geo::GeometryCore::IntersectSegments ( double  A_start_x,
double  A_start_y,
double  A_end_x,
double  A_end_y,
double  B_start_x,
double  B_start_y,
double  B_end_x,
double  B_end_y,
double &  x,
double &  y 
) const

Computes the intersection between two segments on a plane.

Parameters
A_start_xx coordinate of the start of the first segment
A_start_yy coordinate of the start of the first segment
A_end_xx coordinate of the end of the first segment
A_end_yy coordinate of the end of the first segment
B_start_xx coordinate of the start of the second segment
B_start_yy coordinate of the start of the second segment
B_end_xx coordinate of the end of the second segment
B_end_yy coordinate of the end of the second segment
x_(output)_ variable to store the x coordinate of intersection
y_(output)_ variable to store the y coordinate of intersection
Returns
whether intersection exists and is on both segments

The order of the ends is not relevant. The return value is false if the two segments are parallel, or if their intersection point is not on both the segments. If the segments are parallel, x and y variables are not changed. Otherwise, they hold the intersection coordinate, even if the intersection point is beyond one or both the segments.

Definition at line 1347 of file GeometryCore.cxx.

1351  {
1352 
1353  bool bCross = IntersectLines(
1354  A_start_x, A_start_y, A_end_x, A_end_y,
1355  B_start_x, B_start_y, B_end_x, B_end_y,
1356  x, y
1357  );
1358 
1359  if (bCross) {
1360  mf::LogWarning("IntersectSegments") << "The segments are parallel!";
1361  return false;
1362  }
1363 
1364  return PointWithinSegments(
1365  A_start_x, A_start_y, A_end_x, A_end_y,
1366  B_start_x, B_start_y, B_end_x, B_end_y,
1367  x, y
1368  );
1369 
1370  } // GeometryCore::IntersectSegments()
static bool PointWithinSegments(double A_start_x, double A_start_y, double A_end_x, double A_end_y, double B_start_x, double B_start_y, double B_end_x, double B_end_y, double x, double y)
Returns whether x and y are within both specified ranges (A and B).
bool IntersectLines(double A_start_x, double A_start_y, double A_end_x, double A_end_y, double B_start_x, double B_start_y, double B_end_x, double B_end_y, double &x, double &y) const
Computes the intersection between two lines on a plane.
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
list x
Definition: train.py:276
bool geo::GeometryCore::IsValidOpChannel ( int  opChannel) const

Is this a valid OpChannel number?

Definition at line 290 of file GeometryCore.cxx.

291  {
292  return fChannelMapAlg->IsValidOpChannel(opChannel, this->NOpDets());
293  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int NOpDets() const
Number of OpDets in the whole detector.
IteratorBox< cryostat_id_iterator, &GeometryCore::begin_cryostat_id, &GeometryCore::end_cryostat_id > geo::GeometryCore::IterateCryostatIDs ( ) const
inline

Enables ranged-for loops on all cryostat IDs of the detector.

Returns
an object suitable for ranged-for loops on all cryostat IDs

Example of usage:

for (geo::CryostatID const& cID: geom->IterateCryostatIDs()) {
  geo::CryostatGeo const& Cryo = geom->Cryostat(cID);

  // useful code here

} // for all cryostats

Definition at line 2179 of file GeometryCore.h.

2179 { return { this }; }
IteratorBox< cryostat_iterator, &GeometryCore::begin_cryostat, &GeometryCore::end_cryostat > geo::GeometryCore::IterateCryostats ( ) const
inline

Enables ranged-for loops on all cryostats of the detector.

Returns
an object suitable for ranged-for loops on all cryostats

Example of usage:

for (geo::CryostatGeo const& Cryo: geom->IterateCryostats()) {

  // useful code here

} // for all cryostats

Definition at line 2198 of file GeometryCore.h.

2198 { return { this }; }
IteratorBox< plane_id_iterator, &GeometryCore::begin_plane_id, &GeometryCore::end_plane_id > geo::GeometryCore::IteratePlaneIDs ( ) const
inline

Enables ranged-for loops on all plane IDs of the detector.

Returns
an object suitable for ranged-for loops on all plane IDs

Example of usage:

for (geo::PlaneID const& pID: geom->IteratePlaneIDs()) {
geo::PlaneGeo const& Plane = geom->Plane(pID);
// useful code here
} // for all plane IDs

Definition at line 3127 of file GeometryCore.h.

3127 { return { this }; }
LocalIteratorBox< plane_id_iterator, geo::CryostatID, &GeometryCore::begin_plane_id, &GeometryCore::end_plane_id > geo::GeometryCore::IteratePlaneIDs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all plane IDs of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the plane IDs of
Returns
an object suitable for ranged-for loops on plane IDs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::PlaneID const& pID: geom->IteratePlaneIDs(cid)) {
geo::PlaneGeo const& plane = geom->Plane(pID);
// useful code here
} // for all planes in cryostat #1

Definition at line 3152 of file GeometryCore.h.

3152 { return { this, cid }; }
LocalIteratorBox< plane_id_iterator, geo::TPCID, &GeometryCore::begin_plane_id, &GeometryCore::end_plane_id > geo::GeometryCore::IteratePlaneIDs ( geo::TPCID const &  tid) const
inline

Enables ranged-for loops on all plane IDs of the specified TPC.

Parameters
tidthe ID of the TPC to loop the plane IDs of
Returns
an object suitable for ranged-for loops on plane IDs

If the TPC ID is invalid, the effect is undefined.

Example of usage:

geo::TPCID tid{ 0, 1 }; // C:0 T:1 (hope it exists!)
for (geo::PlaneID const& pID: geom->IteratePlaneIDs(tid)) {
geo::PlaneGeo const& plane = geom->Plane(pID);
// useful code here
} // for all planes in C:0 T:1

Definition at line 3176 of file GeometryCore.h.

3176 { return { this, tid }; }
void geo::GeometryCore::IteratePlaneIDs ( geo::PlaneID const &  pid) const
delete

IteratePlaneIDs() is not supported on plane IDs.

void geo::GeometryCore::IteratePlaneIDs ( geo::WireID const &  pid) const
delete

IteratePlaneIDs() is not supported on wire IDs.

void geo::GeometryCore::IteratePlaneIDs ( readout::TPCsetID const &  ) const
delete

IteratePlaneIDs() is not supported on readout IDs.

void geo::GeometryCore::IteratePlaneIDs ( readout::ROPID const &  ) const
delete

IteratePlaneIDs() is not supported on readout IDs.

IteratorBox< plane_iterator, &GeometryCore::begin_plane, &GeometryCore::end_plane > geo::GeometryCore::IteratePlanes ( ) const
inline

Enables ranged-for loops on all planes of the detector.

Returns
an object suitable for ranged-for loops on all planes

Example of usage:

for (geo::PlaneGeo const& Plane: geom->IteratePlanes()) {
// useful code here
} // for all planes

Definition at line 3209 of file GeometryCore.h.

3209 { return { this }; }
LocalIteratorBox< plane_iterator, geo::CryostatID, &GeometryCore::begin_plane, &GeometryCore::end_plane > geo::GeometryCore::IteratePlanes ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all planes of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the planes of
Returns
an object suitable for ranged-for loops on planes

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::PlaneGeo const& plane: geom->IteratePlanes(cid)) {
// useful code here
} // for planes in cryostat 1

Definition at line 3232 of file GeometryCore.h.

3232 { return { this, cid }; }
LocalIteratorBox< plane_iterator, geo::TPCID, &GeometryCore::begin_plane, &GeometryCore::end_plane > geo::GeometryCore::IteratePlanes ( geo::TPCID const &  tid) const
inline

Enables ranged-for loops on all planes of the specified TPC.

Parameters
tidthe ID of the TPC to loop the planes of
Returns
an object suitable for ranged-for loops on planes

If the TPC ID is invalid, the effect is undefined.

Example of usage:

geo::TPCID tid{ 0, 1 }; // C:0 T:1 (hope it exists!)
for (geo::PlaneGeo const& plane: geom->IteratePlanes(tid)) {
// useful code here
} // for planes in C:0 T:1

Definition at line 3255 of file GeometryCore.h.

3255 { return { this, tid }; }
void geo::GeometryCore::IteratePlanes ( geo::PlaneID const &  pid) const
delete

IteratePlanes() is not supported on plane IDs.

void geo::GeometryCore::IteratePlanes ( geo::WireID const &  pid) const
delete

IteratePlanes() is not supported on wire IDs.

void geo::GeometryCore::IteratePlanes ( readout::TPCsetID const &  ) const
delete

IteratePlanes() is not supported on readout IDs.

void geo::GeometryCore::IteratePlanes ( readout::ROPID const &  ) const
delete

IteratePlanes() is not supported on readout IDs.

IteratorBox< ROP_id_iterator, &GeometryCore::begin_ROP_id, &GeometryCore::end_ROP_id > geo::GeometryCore::IterateROPIDs ( ) const
inline

Enables ranged-for loops on all readout plane IDs of the detector.

Returns
an object suitable for ranged-for loops on all ROP IDs

Example of usage:

for (readout::ROPID const& rID: geom->IterateROPIDs()) {
// useful code here
} // for all ROPs

Definition at line 5277 of file GeometryCore.h.

5277 { return { this }; }
LocalIteratorBox< ROP_id_iterator, geo::CryostatID, &GeometryCore::begin_ROP_id, &GeometryCore::end_ROP_id > geo::GeometryCore::IterateROPIDs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all readout plane IDs of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the readout plane IDs of
Returns
an object suitable for ranged-for loops on readout plane IDs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (readout::ROPID const& rID: geom->IterateROPIDs(cid)) {
// useful code here
} // for all readout planes in cryostat #1

Definition at line 5301 of file GeometryCore.h.

5301 { return { this, cid }; }
LocalIteratorBox< ROP_id_iterator, readout::TPCsetID, &GeometryCore::begin_ROP_id, &GeometryCore::end_ROP_id > geo::GeometryCore::IterateROPIDs ( readout::TPCsetID const &  sid) const
inline

Enables ranged-for loops on all readout plane IDs of the specified TPC set.

Parameters
sidthe ID of the TPC set to loop the readout plane IDs of
Returns
an object suitable for ranged-for loops on readout plane IDs

If the TPC set ID is invalid, the effect is undefined.

Example of usage:

readout::TPCsetID sid{ 0, 1 }; // C:0 S:1 (hope it exists!)
for (readout::ROPID const& rID: geom->IterateROPIDs(sid)) {
// useful code here
} // for all readout planes in C:0 S:1

Definition at line 5325 of file GeometryCore.h.

5325 { return { this, sid }; }
IteratorBox< TPC_id_iterator, &GeometryCore::begin_TPC_id, &GeometryCore::end_TPC_id > geo::GeometryCore::IterateTPCIDs ( ) const
inline

Enables ranged-for loops on all TPC IDs of the detector.

Returns
an object suitable for ranged-for loops on all TPC IDs

Example of usage:

for (geo::TPCID const& tID: geom->IterateTPCIDs()) {
geo::TPCGeo const& TPC = geom->TPC(tID);
// useful code here
} // for all TPC

Definition at line 2597 of file GeometryCore.h.

2597 { return { this }; }
LocalIteratorBox< TPC_id_iterator, geo::CryostatID, &GeometryCore::begin_TPC_id, &GeometryCore::end_TPC_id > geo::GeometryCore::IterateTPCIDs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all TPC IDs of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the TPC IDs of
Returns
an object suitable for ranged-for loops on TPC IDs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::TPCID const& tID: geom->IterateTPCIDs(cid)) {
geo::TPCGeo const& TPC = geom->TPC(tID);
// useful code here
} // for all TPC in cryostat #1

Definition at line 2621 of file GeometryCore.h.

2621 { return { this, cid }; }
void geo::GeometryCore::IterateTPCIDs ( geo::TPCID const &  pid) const
delete

IterateTPCIDs() is not supported on TPC IDs.

void geo::GeometryCore::IterateTPCIDs ( geo::PlaneID const &  pid) const
delete

IterateTPCIDs() is not supported on plane IDs.

void geo::GeometryCore::IterateTPCIDs ( geo::WireID const &  pid) const
delete

IterateTPCIDs() is not supported on wire IDs.

void geo::GeometryCore::IterateTPCIDs ( readout::TPCsetID const &  ) const
delete

IterateTPCIDs() is not supported on readout IDs.

void geo::GeometryCore::IterateTPCIDs ( readout::ROPID const &  ) const
delete

IterateTPCIDs() is not supported on readout IDs.

IteratorBox<TPC_iterator, &GeometryCore::begin_TPC, &GeometryCore::end_TPC> geo::GeometryCore::IterateTPCs ( ) const
inline

Enables ranged-for loops on all TPCs of the detector.

Returns
an object suitable for ranged-for loops on all TPCs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

for (geo::TPCGeo const& TPC: geom->IterateTPCs()) {
// useful code here
} // for TPCs

Definition at line 2655 of file GeometryCore.h.

2655 { return { this }; }
LocalIteratorBox< TPC_iterator, geo::CryostatID, &GeometryCore::begin_TPC, &GeometryCore::end_TPC > geo::GeometryCore::IterateTPCs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all TPCs of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the TPCs of
Returns
an object suitable for ranged-for loops on TPCs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::TPCGeo const& TPC: geom->IterateTPCs(cid)) {
// useful code here
} // for TPCs in cryostat 1

Definition at line 2678 of file GeometryCore.h.

2678 { return { this, cid }; }
void geo::GeometryCore::IterateTPCs ( geo::TPCID const &  pid) const
delete

IterateTPCs() is not supported on TPC IDs.

void geo::GeometryCore::IterateTPCs ( geo::PlaneID const &  pid) const
delete

IterateTPCs() is not supported on plane IDs.

void geo::GeometryCore::IterateTPCs ( geo::WireID const &  pid) const
delete

IterateTPCs() is not supported on wire IDs.

void geo::GeometryCore::IterateTPCs ( readout::TPCsetID const &  ) const
delete

IterateTPCs() is not supported on readout IDs.

void geo::GeometryCore::IterateTPCs ( readout::ROPID const &  ) const
delete

IterateTPCs() is not supported on readout IDs.

IteratorBox< TPCset_id_iterator, &GeometryCore::begin_TPCset_id, &GeometryCore::end_TPCset_id > geo::GeometryCore::IterateTPCsetIDs ( ) const
inline

Enables ranged-for loops on all TPC set IDs of the detector.

Returns
an object suitable for ranged-for loops on all TPC set IDs

Example of usage:

for (readout::TPCsetID const& sID: geom->IterateTPCsetIDs()) {
// useful code here
} // for all TPC sets

Definition at line 5032 of file GeometryCore.h.

5032 { return { this }; }
LocalIteratorBox< TPCset_id_iterator, geo::CryostatID, &GeometryCore::begin_TPCset_id, &GeometryCore::end_TPCset_id > geo::GeometryCore::IterateTPCsetIDs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all TPC set IDs of the specified cryostat.

Parameters
cidthe ID of the cryostat to loop the TPC set IDs of
Returns
an object suitable for ranged-for loops on TPC set IDs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (readout::TPCsetID const& tID: geom->IterateTPCsetIDs(cid)) {
// useful code here
} // for all TPC sets in cryostat #1

Definition at line 5056 of file GeometryCore.h.

5056 { return { this, cid }; }
IteratorBox< wire_id_iterator, &GeometryCore::begin_wire_id, &GeometryCore::end_wire_id > geo::GeometryCore::IterateWireIDs ( ) const
inline

Enables ranged-for loops on all wire IDs of the detector.

Returns
an object suitable for ranged-for loops on all wire IDs

Example of usage:

for (geo::WireID const& wID: geom->IterateWireIDs()) {
geo::WireGeo const& Wire = geom->Wire(wID);
// useful code here
} // for all wires

Definition at line 3554 of file GeometryCore.h.

3554 { return { this }; }
LocalIteratorBox< wire_id_iterator, geo::CryostatID, &GeometryCore::begin_wire_id, &GeometryCore::end_wire_id > geo::GeometryCore::IterateWireIDs ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all wire IDs of specified cryostat.

Parameters
cidthe ID of the cryostat to loop the wires of
Returns
an object suitable for ranged-for loops on cryostat wire IDs

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::WireID const& wID: geom->IterateWireIDs(cid)) {
geo::WireGeo const& Wire = geom->Wire(wID);
// useful code here
} // for all wires

Definition at line 3579 of file GeometryCore.h.

3579 { return { this, cid }; }
LocalIteratorBox< wire_id_iterator, geo::TPCID, &GeometryCore::begin_wire_id, &GeometryCore::end_wire_id > geo::GeometryCore::IterateWireIDs ( geo::TPCID const &  tid) const
inline

Enables ranged-for loops on all wire IDs of specified TPC.

Parameters
tidthe ID of the TPC to loop the wires of
Returns
an object suitable for ranged-for loops on TPC wire IDs

If the TPC ID is invalid, the effect is undefined.

Example of usage:

geo::TPCID tid{0, 1}; // C:0 T:1 (hope it exists!)
for (geo::WireID const& wID: geom->IterateWireIDs(tid)) {
geo::WireGeo const& Wire = geom->Wire(wID);
// useful code here
} // for all wires in C:0 T:1

Definition at line 3604 of file GeometryCore.h.

3604 { return { this, tid }; }
LocalIteratorBox< wire_id_iterator, geo::PlaneID, &GeometryCore::begin_wire_id, &GeometryCore::end_wire_id > geo::GeometryCore::IterateWireIDs ( geo::PlaneID const &  pid) const
inline

Enables ranged-for loops on all wire IDs of specified wire plane.

Parameters
pidthe ID of the wire plane to loop the wires of
Returns
an object suitable for ranged-for loops on plane wire IDs

If the wire plane ID is invalid, the effect is undefined.

Example of usage:

geo::PlaneID pid{0, 0, 1}; // C:0 T:0 P:1
for (geo::WireID const& wID: geom->IterateWireIDs(pid)) {
geo::WireGeo const& Wire = geom->Wire(wID);
// useful code here
} // for all wires in C:0 T:0 P:1

Definition at line 3629 of file GeometryCore.h.

3629 { return { this, pid }; }
void geo::GeometryCore::IterateWireIDs ( geo::WireID const &  pid) const
delete

IterateWireIDs() is not supported on wire IDs.

void geo::GeometryCore::IterateWireIDs ( readout::TPCsetID const &  ) const
delete

IterateWireIDs() is not supported on readout IDs.

void geo::GeometryCore::IterateWireIDs ( readout::ROPID const &  ) const
delete

IterateWireIDs() is not supported on readout IDs.

IteratorBox< wire_iterator, &GeometryCore::begin_wire, &GeometryCore::end_wire > geo::GeometryCore::IterateWires ( ) const
inline

Enables ranged-for loops on all wires of the detector.

Returns
an object suitable for ranged-for loops on all wires

Example of usage:

for (geo::WireGeo const& Wire: geom->IterateWires()) {
// useful code here
} // for all wires

Definition at line 3658 of file GeometryCore.h.

3658 { return { this }; }
LocalIteratorBox< wire_iterator, geo::CryostatID, &GeometryCore::begin_wire, &GeometryCore::end_wire > geo::GeometryCore::IterateWires ( geo::CryostatID const &  cid) const
inline

Enables ranged-for loops on all wires of specified cryostat.

Parameters
cidthe ID of the cryostat to loop the wires of
Returns
an object suitable for ranged-for loops on cryostat wires

If the cryostat ID is invalid, the effect is undefined.

Example of usage:

geo::CryostatID cid{1}; // cryostat #1 (hope it exists!)
for (geo::WireID const& Wire: geom->IterateWires(cid)) {
// useful code here
} // for all wires

Definition at line 3682 of file GeometryCore.h.

3682 { return { this, cid }; }
LocalIteratorBox< wire_iterator, geo::TPCID, &GeometryCore::begin_wire, &GeometryCore::end_wire > geo::GeometryCore::IterateWires ( geo::TPCID const &  tid) const
inline

Enables ranged-for loops on all wires of specified TPC.

Parameters
tidthe ID of the TPC to loop the wires of
Returns
an object suitable for ranged-for loops on TPC wires

If the TPC ID is invalid, the effect is undefined.

Example of usage:

geo::TPCID tid{0, 1}; // C:0 T:1 (hope it exists!)
for (geo::WireID const& Wire: geom->IterateWires(tid)) {
// useful code here
} // for all wires in C:0 T:1

Definition at line 3706 of file GeometryCore.h.

3706 { return { this, tid }; }
LocalIteratorBox< wire_iterator, geo::PlaneID, &GeometryCore::begin_wire, &GeometryCore::end_wire > geo::GeometryCore::IterateWires ( geo::PlaneID const &  tid) const
inline

Enables ranged-for loops on all wires of specified wire plane.

Parameters
pidthe ID of the wire plane to loop the wires of
Returns
an object suitable for ranged-for loops on plane wires

If the wire plane ID is invalid, the effect is undefined.

Example of usage:

geo::PlaneID pid{0, 1}; // C:0 T:0 P:1
for (geo::WireID const& Wire: geom->IterateWires(pid)) {
// useful code here
} // for all wires in C:0 T:0 T:1

Definition at line 3730 of file GeometryCore.h.

3730 { return { this, tid }; }
void geo::GeometryCore::IterateWires ( geo::WireID const &  pid) const
delete

IterateWires() is not supported on wire IDs.

void geo::GeometryCore::IterateWires ( readout::TPCsetID const &  ) const
delete

IterateWires() is not supported on readout IDs.

void geo::GeometryCore::IterateWires ( readout::ROPID const &  ) const
delete

IterateWires() is not supported on readout IDs.

void geo::GeometryCore::LoadGeometryFile ( std::string  gdmlfile,
std::string  rootfile,
geo::GeometryBuilder builder,
bool  bForceReload = false 
)

Loads the geometry information from the specified files.

Parameters
gdmlfilepath to file to be used for Geant4 simulation
rootfilepath to file for internal geometry representation
builderalgorithm to be used for the interpretation of geometry
bForceReloadreload even if there is already a valid geometry
See also
ApplyChannelMap()

Both paths must directly resolve to an available file, as no search is performed for them.

The gdmlfile parameter does not have to necessarily be in GDML format, as long as it's something supported by Geant4. This file is not used by the geometry, but its path is provided on request by the simulation modules (see LArSoft LArG4 module). The rootfile also does not need to be a ROOT file, but just anything that TGeoManager::Import() supports. This file is parsed immediately and the internal geometry representation is built out of it.

Note
After calling this method, the detector geometry information can be considered complete, but the geometry service provider is not fully initialized yet, since it's still necessary to provide or update the channel mapping.

Definition at line 91 of file GeometryCore.cxx.

95  {
96 
97 
98  if (gdmlfile.empty()) {
99  throw cet::exception("GeometryCore")
100  << "No GDML Geometry file specified!\n";
101  }
102 
103  if (rootfile.empty()) {
104  throw cet::exception("GeometryCore")
105  << "No ROOT Geometry file specified!\n";
106  }
107 
108  ClearGeometry();
109 
110  // Open the GDML file, and convert it into ROOT TGeoManager format.
111  // Then lock the gGeoManager to prevent future imports, for example
112  // in AuxDetGeometry
113  if( !gGeoManager || bForceReload ){
114  if (gGeoManager) TGeoManager::UnlockGeometry();
115  else { // very first time (or so it should)
116  // [20210630, petrillo@slac.stanford.edu]
117  // ROOT 6.22.08 allows us to choose the representation of lengths
118  // in the geometry objects parsed from GDML.
119  // In LArSoft we want them to be centimeters (ROOT standard).
120  // This was tracked as Redmine issue #25990, and I leave this mark
121  // because I feel that we'll be back to it not too far in the future.
122  // Despite the documentation (ROOT 6.22/08),
123  // it seems the units are locked from the beginning,
124  // so we unlock without prejudice.
125  TGeoManager::LockDefaultUnits(false);
126  TGeoManager::SetDefaultUnits(TGeoManager::kRootUnits);
127  TGeoManager::LockDefaultUnits(true);
128  }
129  TGeoManager::Import(rootfile.c_str());
130  gGeoManager->LockGeometry();
131  }
132 
133  BuildGeometry(builder);
134 
135  fGDMLfile = gdmlfile;
136  fROOTfile = rootfile;
137 
138  mf::LogInfo("GeometryCore") << "New detector geometry loaded from "
139  << "\n\t" << fROOTfile
140  << "\n\t" << fGDMLfile << "\n";
141 
142  } // GeometryCore::LoadGeometryFile()
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
void ClearGeometry()
Deletes the detector geometry structures.
#define Import
void BuildGeometry(geo::GeometryBuilder &builder)
std::string fGDMLfile
path to geometry file used for Geant4 simulation
std::string fROOTfile
path to geometry file for geometry in GeometryCore
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
void geo::GeometryCore::LoadGeometryFile ( std::string  gdmlfile,
std::string  rootfile,
bool  bForceReload = false 
)

Loads the geometry information from the specified files.

Parameters
gdmlfilepath to file to be used for Geant4 simulation
rootfilepath to file for internal geometry representation
bForceReloadreload even if there is already a valid geometry
See also
ApplyChannelMap()

This legacy version of LoadGeometryFile() uses a standard geo::GeometryBuilder implementation. Do not rely on it if you can avoid it.

Definition at line 146 of file GeometryCore.cxx.

149  {
151  (fBuilderParameters, { "tool_type" });
152 
153  // this is a wink to the understanding that we might be using a art-based
154  // service provider configuration sprinkled with tools.
155  geo::GeometryBuilderStandard builder{builderConfig()};
156  LoadGeometryFile(gdmlfile, rootfile, builder, bForceReload);
157  } // GeometryCore::LoadGeometryFile()
void LoadGeometryFile(std::string gdmlfile, std::string rootfile, geo::GeometryBuilder &builder, bool bForceReload=false)
Loads the geometry information from the specified files.
fhicl::ParameterSet fBuilderParameters
Extracts of LArSoft geometry information from ROOT.
template<typename T >
geo::PlaneDataContainer<T> geo::GeometryCore::makePlaneData ( ) const
inline

Returns a container with one entry per wire plane.

Template Parameters
Ttype of data in the container
Returns
a container with one default-constructed T per plane
See also
geo::PlaneDataContainer

The working assumption is that all cryostats have the same number of TPCs, and all TPCs have the same number of planes. It is always guaranteed that all existing planes have an entry in the container, although if the previous working assumption is not satisfied there will be entries in the containers which are not associated to a valid plane.

The interface of the container is detailed in the documentation of the container itself, geo::PlaneDataContainer. Example of usage:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto hitsPerPlane
= geom->makePlaneData<std::vector<recob::Hit const*>>();
for (recob::Hit const& hit: hits) {
if (hit.WireID()) hitsPerPlane[hit.WireID()].push_back(&hit);
} // for

where the container will be filled with pointers to all hits on the given wire plane (wire IDs are implicitly converted into plane IDs in the index operator[] call).

Definition at line 2882 of file GeometryCore.h.

2883  { return { Ncryostats(), MaxTPCs(), MaxPlanes() }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxPlanes() const
Returns the largest number of planes among all TPCs in this detector.
unsigned int MaxTPCs() const
Returns the largest number of TPCs a cryostat in the detector has.
template<typename T >
geo::PlaneDataContainer<T> geo::GeometryCore::makePlaneData ( T const &  defValue) const
inline

Returns a container with one entry per wire plane.

Template Parameters
Ttype of data in the container
Parameters
defValuethe initial value of all elements in the container
Returns
a container with one default-constructed T per plane
See also
geo::PlaneDataContainer

This function operates as makePlaneData() const, except that copies the specified value into all the entries of the container. Example:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto nHitsPerPlane = geom->makePlaneData(0U);
for (recob::Hit const& hit: hits) {
if (hit.WireID()) ++(hitsPerPlane[hit.WireID()]);
} // for

Definition at line 2904 of file GeometryCore.h.

2905  { return { Ncryostats(), MaxTPCs(), MaxPlanes(), defValue }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxPlanes() const
Returns the largest number of planes among all TPCs in this detector.
unsigned int MaxTPCs() const
Returns the largest number of TPCs a cryostat in the detector has.
template<typename T >
readout::ROPDataContainer<T> geo::GeometryCore::makeROPdata ( ) const
inline

Returns a container with one entry per readout plane.

Template Parameters
Ttype of data in the container
Returns
a container with one default-constructed T per readout plane
See also
readout::ROPDataContainer

The working assumption is that all cryostats have the same number of TPC sets, and all TPC sets have the same number of readout planes. It is always guaranteed that all existing readout planes have an entry in the container, although if the previous working assumption is not satisfied there will be entries in the container which are not associated to a valid readout plane.

The interface of the container is detailed in the documentation of the container itself, readout::ROPDataContainer. Example of usage:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto hitsPerROP
= geom->makeROPdata<std::vector<recob::Hit const*>>();

Definition at line 5110 of file GeometryCore.h.

5111  { return { Ncryostats(), MaxTPCsets(), MaxROPs() }; }
unsigned int MaxROPs() const
Returns the largest number of ROPs a TPC set in the detector has.
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCsets() const
Returns the largest number of TPC sets any cryostat in the detector has.
template<typename T >
readout::ROPDataContainer<T> geo::GeometryCore::makeROPdata ( T const &  defValue) const
inline

Returns a container with one entry per readout plane.

Template Parameters
Ttype of data in the container
Parameters
defValuethe initial value of all elements in the container
Returns
a container with one default-constructed T per readout plane
See also
readout::ROPDataContainer

This function operates as makeROPdata() const, except that copies the specified value into all the entries of the container. Example:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto nHitsPerROP = geom->makeROPdata(0U);

Definition at line 5128 of file GeometryCore.h.

5129  { return { Ncryostats(), MaxTPCsets(), MaxROPs(), defValue }; }
unsigned int MaxROPs() const
Returns the largest number of ROPs a TPC set in the detector has.
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCsets() const
Returns the largest number of TPC sets any cryostat in the detector has.
template<typename T >
geo::TPCDataContainer<T> geo::GeometryCore::makeTPCData ( ) const
inline

Returns a container with one entry per TPC.

Template Parameters
Ttype of data in the container
Returns
a container with one default-constructed T per TPC
See also
geo::TPCDataContainer

The working assumption is that all cryostats have the same number of TPCs. It is always guaranteed that all existing TPCs have an entry in the container, although if the previous working assumption is not satisfied there will be entries in the containers which are not associated to a valid TPC.

The interface of the container is detailed in the documentation of the container itself, geo::TPCDataContainer. Example of usage:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto tracksPerTPC
= geom->makeTPCData<std::vector<recob::Track const*>>();
for (recob::Track const& track: tracks) {
geo::TPCGeo const* tpc = geom->PositionToTPCptr(track.Start());
if (tpc) tracksPerTPC[tpc->ID()].push_back(&track);
} // for

where the container will be filled with pointers to all tracks starting from a given TPC (tracks reconstructed as starting outside the TPCs will be not saved in the container).

Definition at line 2342 of file GeometryCore.h.

2343  { return { Ncryostats(), MaxTPCs() }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCs() const
Returns the largest number of TPCs a cryostat in the detector has.
template<typename T >
geo::TPCDataContainer<T> geo::GeometryCore::makeTPCData ( T const &  defValue) const
inline

Returns a container with one entry per TPC.

Template Parameters
Ttype of data in the container
Parameters
defValuethe initial value of all elements in the container
Returns
a container with a value defValue per each TPC
See also
geo::TPCDataContainer

This function operates as makeTPCData() const, except that copies the specified value into all the entries of the container. Example:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto nTracksPerTPC = geom->makeTPCData(0U);
for (recob::Track const& track: tracks) {
geo::TPCGeo const* tpc = geom->PositionToTPCptr(track.Start());
if (tpc) ++(tracksPerTPC[tpc->ID()]);
} // for

Definition at line 2365 of file GeometryCore.h.

2366  { return { Ncryostats(), MaxTPCs(), defValue }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCs() const
Returns the largest number of TPCs a cryostat in the detector has.
template<typename T >
readout::TPCsetDataContainer<T> geo::GeometryCore::makeTPCsetData ( ) const
inline

Returns a container with one entry per TPC set.

Template Parameters
Ttype of data in the container
Returns
a container with one default-constructed T per TPC set
See also
readout::TPCsetDataContainer

The working assumption is that all cryostats have the same number of TPC sets. It is always guaranteed that all existing TPC sets have an entry in the container, although if the previous working assumption is not satisfied there will be entries in the containers which are not associated to a valid TPC set.

The interface of the container is detailed in the documentation of the container itself, readout::TPCsetDataContainer. Example of usage:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto tracksPerTPCset
= geom->makeTPCsetData<std::vector<recob::Track const*>>();

Definition at line 4909 of file GeometryCore.h.

4910  { return { Ncryostats(), MaxTPCsets() }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCsets() const
Returns the largest number of TPC sets any cryostat in the detector has.
template<typename T >
readout::TPCsetDataContainer<T> geo::GeometryCore::makeTPCsetData ( T const &  defValue) const
inline

Returns a container with one entry per TPC set.

Template Parameters
Ttype of data in the container
Parameters
defValuethe initial value of all elements in the container
Returns
a container with a value defValue per each TPC set
See also
readout::TPCsetDataContainer

This function operates as makeTPCsetData() const, except that it copies the specified value into all the entries of the container. Example:

auto const* geom = lar::providerFrom<geo::GeometryCore>();
auto nTracksPerTPCset = geom->makeTPCsetData(0U);

Definition at line 4927 of file GeometryCore.h.

4928  { return { Ncryostats(), MaxTPCsets(), defValue }; }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int MaxTPCsets() const
Returns the largest number of TPC sets any cryostat in the detector has.
double geo::GeometryCore::MassBetweenPoints ( geo::Point_t const &  p1,
geo::Point_t const &  p2 
) const

Returns the column density between two points.

Parameters
p1the first point
p2the second point
Returns
the column density [kg / cm²]

The column density is defined as $ \int_{\vec{p}_{1}}^{\vec{p}_{2}} \rho(\vec{p}) d\vec{p} $ where $ \rho(\vec{p}) $ is the density at point $ \vec{p} $, which the integral leads from p1 to p2 in a straight line.

Both points are specified in world coordinates.

Definition at line 1056 of file GeometryCore.cxx.

1057  {
1058 
1059  //The purpose of this method is to determine the column density
1060  //between the two points given. Do that by starting at p1 and
1061  //stepping until you get to the node of p2. calculate the distance
1062  //between the point just inside that node and p2 to get the last
1063  //bit of column density
1064  double columnD = 0.;
1065 
1066  //first initialize a track - get the direction cosines
1067  geo::Vector_t const dir = (p2 - p1).Unit();
1068 
1069  double const dxyz[3] = { dir.X(), dir.Y(), dir.Z() };
1070  double const cp1[3] = { p1.X(), p1.Y(), p1.Z() };
1071  gGeoManager->InitTrack(cp1, dxyz);
1072 
1073  //might be helpful to have a point to a TGeoNode
1074  TGeoNode *node = gGeoManager->GetCurrentNode();
1075 
1076  //check that the points are not in the same volume already.
1077  //if they are in different volumes, keep stepping until you
1078  //are in the same volume as the second point
1079  while(!gGeoManager->IsSameLocation(p2.X(), p2.Y(), p2.Z())){
1080  gGeoManager->FindNextBoundary();
1081  columnD += gGeoManager->GetStep()*node->GetMedium()->GetMaterial()->GetDensity();
1082 
1083  //the act of stepping puts you in the next node and returns that node
1084  node = gGeoManager->Step();
1085  }//end loop to get to volume of second point
1086 
1087  //now you are in the same volume as the last point, but not at that point.
1088  //get the distance between the current point and the last one
1089  geo::Point_t const last
1090  = geo::vect::makePointFromCoords(gGeoManager->GetCurrentPoint());
1091  double const lastStep = (p2 - last).R();
1092  columnD += lastStep*node->GetMedium()->GetMaterial()->GetDensity();
1093 
1094  return columnD;
1095  }
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Vector_t
Type for representation of momenta in 3D space.
Definition: geo_vectors.h:164
string dir
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< double >, ROOT::Math::GlobalCoordinateSystemTag > Point_t
Type for representation of position in physical 3D space.
Definition: geo_vectors.h:184
double geo::GeometryCore::MassBetweenPoints ( double *  p1,
double *  p2 
) const
TGeoMaterial const * geo::GeometryCore::Material ( geo::Point_t const &  point) const

Returns the material at the specified position.

Definition at line 966 of file GeometryCore.cxx.

966  {
967  auto const pNode = gGeoManager->FindNode(point.X(), point.Y(), point.Z());
968  if (!pNode) return nullptr;
969  auto const pMedium = pNode->GetMedium();
970  return pMedium? pMedium->GetMaterial(): nullptr;
971  }
std::string geo::GeometryCore::MaterialName ( TVector3 const &  point) const
inline

Name of the deepest material containing the point xyz.

Returns
material of the origin by default

Definition at line 1883 of file GeometryCore.h.

1884  { return MaterialName(geo::vect::toPoint(point)); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
std::string MaterialName(TVector3 const &point) const
Name of the deepest material containing the point xyz.
std::string geo::GeometryCore::MaterialName ( geo::Point_t const &  point) const

Definition at line 974 of file GeometryCore.cxx.

975  {
976  // check that the given point is in the World volume at least
977  geo::BoxBoundedGeo worldBox = WorldBox();
978  if (!worldBox.ContainsPosition(point)) {
979  mf::LogWarning("GeometryCoreBadInputPoint")
980  << "point " << point << " is not inside the world volume "
981  << worldBox.Min() << " -- " << worldBox.Max()
982  << "; returning unknown material name";
983  return { "unknownMaterial" };
984  }
985  auto const pMaterial = Material(point);
986  if (!pMaterial) {
987  mf::LogWarning("GeometryCoreBadInputPoint")
988  << "material for point " << point
989  << " not found! returning unknown material name";
990  return { "unknownMaterial" };
991  }
992  return pMaterial->GetName();
993  }
geo::Point_t Min() const
Returns the corner point with the smallest coordinates.
A base class aware of world box coordinatesAn object describing a simple shape can inherit from this ...
Definition: BoxBoundedGeo.h:33
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
TGeoMaterial const * Material(geo::Point_t const &point) const
Returns the material at the specified position.
geo::Point_t Max() const
Returns the corner point with the largest coordinates.
bool ContainsPosition(geo::Point_t const &point, double wiggle=1.0) const
Returns whether this volume contains the specified point.
geo::BoxBoundedGeo WorldBox() const
unsigned int geo::GeometryCore::MaxOpChannel ( ) const

Largest optical channel number.

Definition at line 259 of file GeometryCore.cxx.

260  {
261  return fChannelMapAlg->MaxOpChannel(this->NOpDets());
262  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int NOpDets() const
Number of OpDets in the whole detector.
unsigned int geo::GeometryCore::MaxPlanes ( ) const

Returns the largest number of planes among all TPCs in this detector.

Definition at line 878 of file GeometryCore.cxx.

878  {
879  unsigned int maxPlanes = 0;
880  for (geo::CryostatGeo const& cryo: Cryostats()) {
881  unsigned int maxPlanesInCryo = cryo.MaxPlanes();
882  if (maxPlanesInCryo > maxPlanes) maxPlanes = maxPlanesInCryo;
883  } // for
884  return maxPlanes;
885  } // GeometryCore::MaxPlanes()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
CryostatList_t & Cryostats()
Return the internal cryostat list.
unsigned int geo::GeometryCore::MaxROPs ( ) const

Returns the largest number of ROPs a TPC set in the detector has.

Definition at line 1722 of file GeometryCore.cxx.

1722  {
1723  return fChannelMapAlg->MaxROPs();
1724  } // GeometryCore::MaxROPs()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::MaxTPCs ( ) const

Returns the largest number of TPCs a cryostat in the detector has.

Definition at line 858 of file GeometryCore.cxx.

858  {
859  unsigned int maxTPCs = 0;
860  for (geo::CryostatGeo const& cryo: Cryostats()) {
861  unsigned int maxTPCsInCryo = cryo.NTPC();
862  if (maxTPCsInCryo > maxTPCs) maxTPCs = maxTPCsInCryo;
863  } // for
864  return maxTPCs;
865  } // GeometryCore::MaxTPCs()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
CryostatList_t & Cryostats()
Return the internal cryostat list.
unsigned int geo::GeometryCore::MaxTPCsets ( ) const

Returns the largest number of TPC sets any cryostat in the detector has.

Definition at line 1678 of file GeometryCore.cxx.

1678  {
1679  return fChannelMapAlg->MaxTPCsets();
1680  } // GeometryCore::MaxTPCsets()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::MaxWires ( ) const

Returns the largest number of wires among all planes in this detector.

Definition at line 888 of file GeometryCore.cxx.

888  {
889  unsigned int maxWires = 0;
890  for (geo::CryostatGeo const& cryo: Cryostats()) {
891  unsigned int maxWiresInCryo = cryo.MaxWires();
892  if (maxWiresInCryo > maxWires) maxWires = maxWiresInCryo;
893  } // for
894  return maxWires;
895  } // GeometryCore::MaxWires()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
CryostatList_t & Cryostats()
Return the internal cryostat list.
unsigned int geo::GeometryCore::NAuxDets ( ) const
inline

Returns the number of auxiliary detectors.

Todo:
use a AutDetID_t instead of unsigned int?

This method returns the total number of scintillator paddles (Auxiliary Detectors aka AuxDet) outside of the cryostat

Todo:
Change return type to size_t

Definition at line 4549 of file GeometryCore.h.

4549 { return AuxDets().size(); }
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
unsigned int geo::GeometryCore::NAuxDetSensitive ( size_t const &  aid) const

Returns the number of sensitive components of auxiliary detector.

Parameters
aidID of the auxiliary detector
Returns
number of sensitive components in the auxiliary detector aid cet::exception (category "Geometry") if aid does not exist

Definition at line 296 of file GeometryCore.cxx.

297  {
298  if( aid > NAuxDets() - 1)
299  throw cet::exception("Geometry") << "Requested AuxDet index " << aid
300  << " is out of range: " << NAuxDets();
301 
302  return AuxDets()[aid].NSensitiveVolume();
303  }
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
unsigned int NAuxDets() const
Returns the number of auxiliary detectors.
unsigned int geo::GeometryCore::Nchannels ( ) const

Returns the number of TPC readout channels in the detector.

Definition at line 208 of file GeometryCore.cxx.

209  {
210  return fChannelMapAlg->Nchannels();
211  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::Nchannels ( readout::ROPID const &  ropid) const

Returns the number of channels in the specified ROP.

Returns
number of channels in the specified ROP, 0 if non-existent

Definition at line 214 of file GeometryCore.cxx.

215  {
216  return fChannelMapAlg->Nchannels(ropid);
217  } // GeometryCore::Nchannels(ROPID)
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::Ncryostats ( ) const
inline

Returns the number of cryostats in the detector.

The NElements() and NSiblingElements() methods are overloaded and their return depends on the type of ID.

Todo:
Change return type to size_t

Definition at line 1994 of file GeometryCore.h.

1994 { return Cryostats().size(); }
CryostatList_t & Cryostats()
Return the internal cryostat list.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( geo::Point_t const &  worldLoc,
geo::PlaneID const &  planeid 
) const

Returns the ID of the channel nearest to the specified position.

Parameters
worldLoc3D coordinates of the point (world reference frame)
planeidID of the wire plane the channel must belong to
Returns
the ID of the channel, or raw::InvalidChannelID if invalid wire
Bug:
on invalid wire, a geo::InvalidWireError exception is thrown

Definition at line 1207 of file GeometryCore.cxx.

1208  {
1209 
1210  // This method is supposed to return a channel number rather than
1211  // a wire number. Perform the conversion here (although, maybe
1212  // faster if we deal in wire numbers rather than channel numbers?)
1213 
1214  // NOTE on failure both NearestChannel() and upstream:
1215  // * according to documentation, should return invalid channel
1216  // * in the actual code throw an exception because of a BUG
1217  //
1218  // The following implementation automatically becomes in fact compliant to
1219  // the documentation if upstreams becomes compliant to.
1220  // When that happens, just delete this comment.
1221  geo::WireID const wireID = NearestWireID(worldPos, planeid);
1222  return wireID? PlaneWireToChannel(wireID): raw::InvalidChannelID;
1223  } // GeometryCore::NearestChannel()
Raw data description.
constexpr ChannelID_t InvalidChannelID
ID of an invalid channel.
Definition: RawTypes.h:32
raw::ChannelID_t PlaneWireToChannel(WireID const &wireid) const
Returns the ID of the TPC channel connected to the specified wire.
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( const double  worldLoc[3],
geo::PlaneID const &  planeid 
) const

Returns the ID of the channel nearest to the specified position.

Parameters
worldLoc3D coordinates of the point (world reference frame)
PlaneNothe number of plane
TPCNothe number of TPC
cstatthe number of cryostat
Returns
the ID of the channel, or raw::InvalidChannelID if invalid wire
Bug:
on invalid wire, a geo::InvalidWireError exception is thrown

The different versions allow different way to provide the position.

Todo:
remove the integers version

Definition at line 1190 of file GeometryCore.cxx.

1191  {
1192  return NearestChannel(geo::vect::makePointFromCoords(worldPos), planeid);
1193  }
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( std::vector< double > const &  worldLoc,
geo::PlaneID const &  planeid 
) const

Definition at line 1197 of file GeometryCore.cxx.

1198  {
1199  if(worldPos.size() > 3) throw cet::exception("GeometryCore") << "bad size vector for "
1200  << "worldPos: "
1201  << worldPos.size() << "\n";
1202  return NearestChannel(worldPos.data(), planeid);
1203  }
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
raw::ChannelID_t geo::GeometryCore::NearestChannel ( const TVector3 &  worldLoc,
geo::PlaneID const &  planeid 
) const
inline

Definition at line 4819 of file GeometryCore.h.

4820  { return NearestChannel(geo::vect::toPoint(worldLoc), planeid); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( const double  worldLoc[3],
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4821 of file GeometryCore.h.

4825  { return NearestChannel(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( std::vector< double > const &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4826 of file GeometryCore.h.

4830  { return NearestChannel(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( const TVector3 &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4831 of file GeometryCore.h.

4835  { return NearestChannel(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
raw::ChannelID_t geo::GeometryCore::NearestChannel ( geo::Point_t const &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4836 of file GeometryCore.h.

4840  { return NearestChannel(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
raw::ChannelID_t NearestChannel(geo::Point_t const &worldLoc, geo::PlaneID const &planeid) const
Returns the ID of the channel nearest to the specified position.
unsigned int geo::GeometryCore::NearestWire ( geo::Point_t const &  point,
geo::PlaneID const &  planeid 
) const

Returns the index of wire closest to position in the specified TPC.

Parameters
pointthe point to be tested [cm]
planeidID of the plane
Returns
the index of the wire, or geo::WireID::InvalidID on failure
Bug:
Actually, on failure an exception geo::InvalidWireError is thrown
Deprecated:
Use NearestWireID() instead.

Definition at line 1141 of file GeometryCore.cxx.

1142  {
1143  return NearestWireID(point, planeid).Wire;
1144  // return fChannelMapAlg->NearestWire(worldPos, planeid);
1145  }
WireID_t Wire
Index of the wire within its plane.
Definition: geo_types.h:580
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( const double  worldLoc[3],
geo::PlaneID const &  planeid 
) const

Returns the index of wire closest to position in the specified TPC.

Parameters
worldLoc3D coordinates of the point (world reference frame)
planeidID of the plane
PlaneNoplane number within the TPC
TPCNotpc number within the cryostat
cstatcryostat number
Returns
the index of the wire

The different versions allow different way to provide the position.

Deprecated:
Use NearestWireID() instead.
Todo:

remove the integers version

what happens when no wire is found?

Definition at line 1149 of file GeometryCore.cxx.

1150  {
1151  return NearestWire(geo::vect::makePointFromCoords(worldPos), planeid);
1152  }
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( std::vector< double > const &  worldLoc,
geo::PlaneID const &  planeid 
) const

Definition at line 1156 of file GeometryCore.cxx.

1157  {
1158  if(worldPos.size() > 3) throw cet::exception("GeometryCore") << "bad size vector for "
1159  << "worldPos: "
1160  << worldPos.size() << "\n";
1161  return NearestWire(worldPos.data(), planeid);
1162  }
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
unsigned int geo::GeometryCore::NearestWire ( const TVector3 &  worldLoc,
geo::PlaneID const &  planeid 
) const
inline

Definition at line 4005 of file GeometryCore.h.

4006  { return NearestWire(geo::vect::toPoint(worldLoc), planeid); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( const double  worldLoc[3],
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4007 of file GeometryCore.h.

4011  { return NearestWire(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( std::vector< double > const &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4012 of file GeometryCore.h.

4016  { return NearestWire(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( const TVector3 &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4017 of file GeometryCore.h.

4021  { return NearestWire(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NearestWire ( geo::Point_t const &  worldLoc,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4022 of file GeometryCore.h.

4026  { return NearestWire(worldLoc, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID::WireID_t NearestWire(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the index of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( geo::Point_t const &  point,
geo::PlaneID const &  planeid 
) const

Returns the ID of wire closest to position in the specified TPC.

Parameters
pointthe point to be tested [cm]
planeidID of the plane
Returns
the ID of the wire, or an invalid wire ID
See also
geo::PlaneGeo::ClosestWireID()
Bug:
Instead of returning an invalid wire ID, an exception is thrown!

If the nearest wire is not closer than half a wire pitch, the result is marked invalid. The returned (invalid) ID will contain the non-existing wire that would be the nearest, if it existed.

If the wire ID is invalid and the existing closest wire is desired, a possible solution is (when the BUG will be solved):

geo::WireID wireID = geom->NearestWireID(point, planeID);
if (!wireID) wireID = geom->Plane(planeID).ClosestWireID(wireID);

Note however that this will execute plane lookup twice, and a more efficient approach would be to ask the plane everything directly:

geo::PlaneGeo const& plane = geom->Plane(planeID);
geo::WireID wireID = plane.NearestWireID(point);
if (!wireID) wireID = plane.ClosestWireID(wireID);

Until the BUG is fixed, the actual working code is:

geo::PlaneGeo const& plane = geom->Plane(planeID);
geo::WireID wireID;
try {
wireID = plane.NearestWireID(point);
}
catch (geo::InvalidWireError const& e) {
if (!e.hasSuggestedWire()) throw;
wireID = plane.ClosestWireID(e.suggestedWireID());
}

Definition at line 1166 of file GeometryCore.cxx.

1167  {
1168  return Plane(planeid).NearestWireID(worldPos);
1169  }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
geo::WireID NearestWireID(geo::Point_t const &pos) const
Returns the ID of wire closest to the specified position.
Definition: PlaneGeo.cxx:649
geo::WireID geo::GeometryCore::NearestWireID ( const double  point[3],
geo::PlaneID const &  planeid 
) const

Returns the ID of wire closest to position in the specified TPC.

Parameters
pointthe point to be tested [cm]
planeidID of the plane
PlaneNoplane number within the TPC
TPCNotpc number within the cryostat
cstatcryostat number
Returns
the ID of the wire, or an invalid wire ID
Bug:
Instead of returning an invalid wire ID, an exception is thrown!

The different versions allow different way to provide the position.

Deprecated:
Use the version with a geo::Point_t and PlaneID arguments
Todo:
remove the integers version

Definition at line 1183 of file GeometryCore.cxx.

1184  {
1185  return NearestWireID(geo::vect::makePointFromCoords(worldPos), planeid);
1186  }
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( std::vector< double > const &  point,
geo::PlaneID const &  planeid 
) const

Definition at line 1173 of file GeometryCore.cxx.

1174  {
1175  if(worldPos.size() > 3) throw cet::exception("GeometryCore") << "bad size vector for "
1176  << "worldPos: "
1177  << worldPos.size() << "\n";
1178  return NearestWireID(worldPos.data(), planeid);
1179  }
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
geo::WireID geo::GeometryCore::NearestWireID ( const TVector3 &  point,
geo::PlaneID const &  planeid 
) const
inline

Definition at line 3948 of file GeometryCore.h.

3949  { return NearestWireID(geo::vect::toPoint(point), planeid); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( const double  point[3],
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 3950 of file GeometryCore.h.

3954  { return NearestWireID(point, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( std::vector< double > const &  point,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 3955 of file GeometryCore.h.

3959  { return NearestWireID(point, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( const TVector3 &  point,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 3960 of file GeometryCore.h.

3964  { return NearestWireID(point, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
geo::WireID geo::GeometryCore::NearestWireID ( geo::Point_t const &  point,
unsigned int const  PlaneNo,
unsigned int const  TPCNo = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 3965 of file GeometryCore.h.

3969  { return NearestWireID(point, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::WireID NearestWireID(geo::Point_t const &point, geo::PlaneID const &planeid) const
Returns the ID of wire closest to position in the specified TPC.
unsigned int geo::GeometryCore::NElements ( ) const
inline

Definition at line 1995 of file GeometryCore.h.

1995 { return Ncryostats(); }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int geo::GeometryCore::NElements ( geo::CryostatID const &  cryoid) const
inline

Definition at line 2386 of file GeometryCore.h.

2387  { return NTPC(cryoid); }
unsigned int NTPC(unsigned int cstat=0) const
Returns the total number of TPCs in the specified cryostat.
unsigned int geo::GeometryCore::NElements ( geo::TPCID const &  tpcid) const
inline

Definition at line 2924 of file GeometryCore.h.

2925  { return Nplanes(tpcid); }
unsigned int Nplanes(unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wire planes in the specified TPC.
unsigned int geo::GeometryCore::NElements ( geo::PlaneID const &  planeid) const
inline

Definition at line 3361 of file GeometryCore.h.

3362  { return Nwires(planeid); }
unsigned int Nwires(unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wires in the specified plane.
unsigned int geo::GeometryCore::NOpChannels ( ) const

Number of electronics channels for all the optical detectors.

Todo:
add explanation of the different IDs

Definition at line 253 of file GeometryCore.cxx.

254  {
255  return fChannelMapAlg->NOpChannels(this->NOpDets());
256  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int NOpDets() const
Number of OpDets in the whole detector.
unsigned int geo::GeometryCore::NOpDets ( ) const

Number of OpDets in the whole detector.

Definition at line 244 of file GeometryCore.cxx.

245  {
246  int N=0;
247  for(size_t cstat=0; cstat!=Ncryostats(); cstat++)
248  N += this->Cryostat(cstat).NOpDet();
249  return N;
250  }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
unsigned int NOpDet() const
Number of optical detectors in this TPC.
Definition: CryostatGeo.h:361
unsigned int geo::GeometryCore::NOpHardwareChannels ( int  opDet) const

Definition at line 265 of file GeometryCore.cxx.

266  {
267  return fChannelMapAlg->NOpHardwareChannels(opDet);
268  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::Nplanes ( unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Returns the total number of wire planes in the specified TPC.

Parameters
tpctpc number within the cryostat
cstatcryostat number
Todo:

Make all the arguments mandatory (as TPCID)

Change return type to size_t

what happens if TPC does not exist?

Definition at line 2848 of file GeometryCore.h.

2849  { return Nplanes(geo::TPCID(cstat, tpc)); }
unsigned int Nplanes(unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wire planes in the specified TPC.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
unsigned int geo::GeometryCore::Nplanes ( geo::TPCID const &  tpcid) const
inline

Returns the total number of planes in the specified TPC.

Parameters
tpcidTPC ID
Returns
number of planes in specified TPC, or 0 if no TPC found

The NElements() and NSiblingElements() methods are overloaded and their return depends on the type of ID.

Todo:
Change return type to size_t

Definition at line 2919 of file GeometryCore.h.

2920  {
2921  TPCGeo const* pTPC = GetElementPtr(tpcid);
2922  return pTPC? pTPC->NElements(): 0;
2923  }
CryostatGeo const * GetElementPtr(geo::CryostatID const &cryoid) const
unsigned int geo::GeometryCore::NROPs ( readout::TPCsetID const &  tpcsetid) const

Returns the total number of ROP in the specified TPC set.

Parameters
tpcsetidTPC set ID
Returns
number of readout planes in the TPC set, or 0 if no TPC set found

Note that this methods explicitly check the existence of the TPC set.

The NSiblingElements() method is overloaded and its return depends on the type of ID.

Definition at line 1716 of file GeometryCore.cxx.

1716  {
1717  return fChannelMapAlg->NROPs(tpcsetid);
1718  } // GeometryCore::NROPs()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::NSiblingElements ( geo::CryostatID const &  ) const
inline

Definition at line 1996 of file GeometryCore.h.

1997  { return Ncryostats(); }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
unsigned int geo::GeometryCore::NSiblingElements ( geo::TPCID const &  tpcid) const
inline

Definition at line 2388 of file GeometryCore.h.

2389  { return NTPC(tpcid); }
unsigned int NTPC(unsigned int cstat=0) const
Returns the total number of TPCs in the specified cryostat.
unsigned int geo::GeometryCore::NSiblingElements ( geo::PlaneID const &  planeid) const
inline

Definition at line 2926 of file GeometryCore.h.

2927  { return Nplanes(planeid); }
unsigned int Nplanes(unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wire planes in the specified TPC.
unsigned int geo::GeometryCore::NSiblingElements ( geo::WireID const &  wireid) const
inline

Definition at line 3363 of file GeometryCore.h.

3364  { return Nwires(wireid); }
unsigned int Nwires(unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wires in the specified plane.
unsigned int geo::GeometryCore::NSiblingElements ( readout::TPCsetID const &  tpcsetid) const
inline

Definition at line 4880 of file GeometryCore.h.

4881  { return NTPCsets(tpcsetid); }
unsigned int NTPCsets(readout::CryostatID const &cryoid) const
Returns the total number of TPC sets in the specified cryostat.
unsigned int geo::GeometryCore::NSiblingElements ( readout::ROPID const &  ropid) const
inline

Definition at line 5080 of file GeometryCore.h.

5081  { return NROPs(ropid); }
unsigned int NROPs(readout::TPCsetID const &tpcsetid) const
Returns the total number of ROP in the specified TPC set.
unsigned int geo::GeometryCore::NTPC ( unsigned int  cstat = 0) const
inline

Returns the total number of TPCs in the specified cryostat.

Parameters
cstatcryostat number
Todo:

Make the cryostat number mandatory (as CryostatID)

Change return type to size_t

what happens if it does not exist?

Definition at line 2303 of file GeometryCore.h.

2304  { return NTPC(geo::CryostatID(cstat)); }
unsigned int NTPC(unsigned int cstat=0) const
Returns the total number of TPCs in the specified cryostat.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
unsigned int geo::GeometryCore::NTPC ( geo::CryostatID const &  cryoid) const
inline

Returns the total number of TPCs in the specified cryostat.

Parameters
cryoidcryostat number
Returns
number of TPCs in specified cryostat, or 0 if no cryostat found

The NElements() and NSiblingElements() methods are overloaded and their return depends on the type of ID.

Todo:
Change return type to size_t

Definition at line 2381 of file GeometryCore.h.

2382  {
2383  CryostatGeo const* pCryo = GetElementPtr(cryoid);
2384  return pCryo? pCryo->NElements(): 0;
2385  }
CryostatGeo const * GetElementPtr(geo::CryostatID const &cryoid) const
unsigned int geo::GeometryCore::NTPCsets ( readout::CryostatID const &  cryoid) const

Returns the total number of TPC sets in the specified cryostat.

Parameters
cryoidcryostat ID
Returns
number of TPC sets in the cryostat, or 0 if no cryostat found

The NSiblingElements() method is overloaded and its return depends on the type of ID.

Definition at line 1672 of file GeometryCore.cxx.

1672  {
1673  return fChannelMapAlg->NTPCsets(cryoid);
1674  } // GeometryCore::NTPCsets()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::Nviews ( ) const

Returns the number of views (different wire orientations)

Returns the number of different views, or wire orientations, in the detector.

The function assumes that all TPCs in all cryostats of a detector have the same number of planes, which should be a safe assumption.

Todo:
Change return type to size_t

Definition at line 307 of file GeometryCore.cxx.

308  {
309  return MaxPlanes();
310  }
unsigned int MaxPlanes() const
Returns the largest number of planes among all TPCs in this detector.
unsigned int geo::GeometryCore::Nwires ( unsigned int  p,
unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Returns the total number of wires in the specified plane.

Parameters
pplane number within the TPC
tpctpc number within the cryostat
cstatcryostat number
Todo:

Make all the arguments mandatory (as PlaneID)

Change return type to size_t

what happens if it does not exist?

Definition at line 3342 of file GeometryCore.h.

3343  { return Nwires(geo::PlaneID(cstat, tpc, p)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
unsigned int Nwires(unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wires in the specified plane.
p
Definition: test.py:223
unsigned int geo::GeometryCore::Nwires ( geo::PlaneID const &  planeid) const
inline

Returns the total number of wires in the specified plane.

Parameters
planeidplane ID
Returns
number of wires in specified plane, or 0 if no plane found

The NElements() and NSiblingElements() methods are overloaded and their return depends on the type of ID.

Todo:
Change return type to size_t

Definition at line 3356 of file GeometryCore.h.

3357  {
3358  PlaneGeo const* pPlane = GetElementPtr(planeid);
3359  return pPlane? pPlane->NElements(): 0;
3360  }
CryostatGeo const * GetElementPtr(geo::CryostatID const &cryoid) const
unsigned int geo::GeometryCore::OpChannel ( int  detNum,
int  hardwareChannel 
) const

Convert detector number and hardware channel to unique channel.

Definition at line 271 of file GeometryCore.cxx.

272  {
273  return fChannelMapAlg->OpChannel(detNum, hardwareChannel);
274  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
unsigned int geo::GeometryCore::OpDetFromCryo ( unsigned int  o,
unsigned int  c 
) const

Get unique opdet number from cryo and internal count.

Definition at line 1788 of file GeometryCore.cxx.

1789  {
1790  static bool Loaded=false;
1791  static std::vector<unsigned int> LowestID;
1792  static unsigned int NCryo;
1793  // If not yet loaded static parameters, do it
1794  if(Loaded == false){
1795 
1796  Loaded = true;
1797 
1798  // Store the lowest ID for each cryostat
1799  NCryo=Ncryostats();
1800  LowestID.resize(NCryo + 1);
1801  LowestID.at(0)=0;
1802  for(size_t cryo=0; cryo!=NCryo; ++cryo){
1803  LowestID.at(cryo+1)=LowestID.at(cryo)+Cryostat(c).NOpDet();
1804  }
1805 
1806  }
1807 
1808  if( (c < NCryo) && (o < Cryostat(c).NOpDet())){
1809  return LowestID.at(c)+o;
1810  }
1811  else{
1812  throw cet::exception("OpDetCryoToOpID Error") << "Coordinates c=" << c
1813  << ", o=" << o
1814  << " out of range. Abort\n";
1815  }
1816 
1817  // if all is well, we never get to this point in the method
1818  // but still a good idea to be sure to always return something.
1819 
1820  return INT_MAX;
1821  }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
unsigned int NOpDet() const
Number of optical detectors in this TPC.
Definition: CryostatGeo.h:361
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
unsigned int geo::GeometryCore::OpDetFromOpChannel ( int  opChannel) const

Convert unique channel to detector number.

Definition at line 277 of file GeometryCore.cxx.

278  {
279  return fChannelMapAlg->OpDetFromOpChannel(opChannel);
280  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
const OpDetGeo & geo::GeometryCore::OpDetGeoFromOpChannel ( unsigned int  OpChannel) const

Returns the geo::OpDetGeo object for the given channel number.

Parameters
OpChanneloptical detector unique channel number
See also
GeometryCoreOpDetGeometry "optical detector identification"

Definition at line 1824 of file GeometryCore.cxx.

1825  {
1826  return this->OpDetGeoFromOpDet(this->OpDetFromOpChannel(OpChannel));
1827  }
OpDetGeo const & OpDetGeoFromOpDet(unsigned int OpDet) const
Returns the geo::OpDetGeo object for the given detector number.
unsigned int OpDetFromOpChannel(int opChannel) const
Convert unique channel to detector number.
unsigned int OpChannel(int detNum, int hardwareChannel) const
Convert detector number and hardware channel to unique channel.
const OpDetGeo & geo::GeometryCore::OpDetGeoFromOpDet ( unsigned int  OpDet) const

Returns the geo::OpDetGeo object for the given detector number.

Parameters
OpDetoptical detector unique number
See also
GeometryCoreOpDetGeometry "optical detector identification"

Definition at line 1830 of file GeometryCore.cxx.

1831  {
1832  static bool Loaded=false;
1833  static std::vector<unsigned int> LowestID;
1834  static size_t NCryo;
1835  // If not yet loaded static parameters, do it
1836  if(Loaded == false){
1837 
1838  Loaded = true;
1839 
1840  // Store the lowest ID for each cryostat
1841  NCryo=Ncryostats();
1842  LowestID.resize(NCryo + 1);
1843  LowestID[0] = 0;
1844  for(size_t cryo = 0; cryo != NCryo; ++cryo){
1845  LowestID[cryo+1] = LowestID[cryo] + Cryostat(cryo).NOpDet();
1846  }
1847 
1848  }
1849 
1850  for(size_t i=0; i!=NCryo; ++i){
1851  if( (OpDet >= LowestID[i]) && (OpDet < LowestID[i+1]) ){
1852  int c = i;
1853  int o = OpDet-LowestID[i];
1854  return this->Cryostat(c).OpDet(o);
1855  }
1856  }
1857  // If we made it here, we didn't find the right combination. abort
1858  throw cet::exception("OpID To OpDetCryo error")<<"OpID out of range, "<< OpDet << "\n";
1859 
1860  // Will not reach due to exception
1861  return this->Cryostat(0).OpDet(0);
1862  }
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
const OpDetGeo & OpDet(unsigned int iopdet) const
Return the iopdet&#39;th optical detector in the cryostat.
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
unsigned int NOpDet() const
Number of optical detectors in this TPC.
Definition: CryostatGeo.h:361
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
std::string geo::GeometryCore::OpDetGeoName ( unsigned int  c = 0) const

Returns gdml string which gives sensitive opdet name.

Parameters
cID of the cryostat the detector is in

This name is defined in the geometry (GDML) description.

Todo:
Change to use CryostatID

Definition at line 1781 of file GeometryCore.cxx.

1782  {
1783  return Cryostat(c).OpDetGeoName();
1784  }
std::string OpDetGeoName() const
Get name of opdet geometry element.
Definition: CryostatGeo.h:377
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
GeometryCore& geo::GeometryCore::operator= ( GeometryCore const &  )
delete
GeometryCore& geo::GeometryCore::operator= ( GeometryCore &&  )
delete
PlaneGeo const& geo::GeometryCore::Plane ( unsigned int const  p,
unsigned int const  tpc = 0,
unsigned int const  cstat = 0 
) const
inline

Returns the specified wire.

Parameters
planeidID of the plane
pplane number within the TPC
tpcTPC number within the cryostat
cstatnumber of cryostat
Returns
a constant reference to the specified plane
Exceptions
cet::exception(GeometryCore category) if cryostat not present
cet::exception(TPCOutOfRange category) if no such TPC
cet::exception(PlaneOutOfRange category) if no such plane

The GetElement() method is overloaded and its return depends on the type of ID.

Todo:
remove the version with integers

Definition at line 2994 of file GeometryCore.h.

2996  { return Plane(geo::PlaneID(cstat, tpc, p)); }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
p
Definition: test.py:223
PlaneGeo const& geo::GeometryCore::Plane ( geo::PlaneID const &  planeid) const
inline

Definition at line 2997 of file GeometryCore.h.

2998  { return TPC(planeid).Plane(planeid); }
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
std::set< PlaneID > const & geo::GeometryCore::PlaneIDs ( ) const

Returns a list of possible PlaneIDs in the detector.

Returns
a constant reference to the set of plane IDs
Deprecated:
use IteratePlaneIDs() instead plane IDs of DUNE FD? probably better to use iterators instead

Definition at line 613 of file GeometryCore.cxx.

614  {
615  return fChannelMapAlg->PlaneIDs();
616  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
double geo::GeometryCore::PlanePitch ( geo::TPCID const &  tpcid,
geo::PlaneID::PlaneID_t  p1 = 0,
geo::PlaneID::PlaneID_t  p2 = 1 
) const

Returns the distance between two planes.

Parameters
p1index of the first plane
p2index of the second plane
tpctpc number within the cryostat
cstatcryostat number
Returns
distance between the planes
Todo:

add a version with plane IDs

deprecate this function

add a default version for a given TPCID

add a version with two plane indices for a given TPCID

return the absolute value of the distance (makes the order unimportant)

document what will happen (in the future methods) with planes on different TPCs

Definition at line 800 of file GeometryCore.cxx.

804  {
805  return TPC(tpcid).PlanePitch(p1, p2);
806  }
double PlanePitch(unsigned int p1=0, unsigned int p2=1) const
Definition: TPCGeo.cxx:388
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
double geo::GeometryCore::PlanePitch ( geo::PlaneID const &  pid1,
geo::PlaneID const &  pid2 
) const

Definition at line 809 of file GeometryCore.cxx.

810  {
811  return PlanePitch(pid1.asTPCID(), pid1.Plane, pid2.Plane);
812  }
geo::Length_t PlanePitch(geo::TPCID const &tpcid, geo::PlaneID::PlaneID_t p1=0, geo::PlaneID::PlaneID_t p2=1) const
Returns the distance between two planes.
double geo::GeometryCore::PlanePitch ( unsigned int  p1 = 0,
unsigned int  p2 = 1,
unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const

Definition at line 814 of file GeometryCore.cxx.

818  {
819  return PlanePitch(geo::TPCID(cstat, tpc), p1, p2);
820  }
geo::Length_t PlanePitch(geo::TPCID const &tpcid, geo::PlaneID::PlaneID_t p1=0, geo::PlaneID::PlaneID_t p2=1) const
Returns the distance between two planes.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
PlaneGeo const* geo::GeometryCore::PlanePtr ( geo::PlaneID const &  planeid) const
inline

Returns the specified plane.

Parameters
planeidplane ID
Returns
a constant pointer to the specified plane, or nullptr if none

The GetElementPtr() method is overloaded and its return depends on the type of ID.

Definition at line 3012 of file GeometryCore.h.

3013  {
3014  geo::TPCGeo const* pTPC = TPCPtr(planeid);
3015  return pTPC? pTPC->PlanePtr(planeid): nullptr;
3016  } // PlanePtr()
Geometry information for a single TPC.
Definition: TPCGeo.h:38
TPCGeo const * TPCPtr(geo::TPCID const &tpcid) const
Returns the specified TPC.
PlaneGeo const * PlanePtr(unsigned int iplane) const
Returns the plane number iplane from this TPC.
Definition: TPCGeo.h:223
raw::ChannelID_t geo::GeometryCore::PlaneWireToChannel ( WireID const &  wireid) const

Returns the ID of the TPC channel connected to the specified wire.

Parameters
planethe number of plane
wirethe number of wire
tpcthe number of TPC
cryostatthe number of cryostat
wireidthe ID of the wire
Returns
the ID of the channel, or raw::InvalidChannelID if invalid wire
Todo:

Verify the raw::InvalidChannelID part

remove the integers version

Definition at line 1226 of file GeometryCore.cxx.

1227  {
1228  return fChannelMapAlg->PlaneWireToChannel(wireid);
1229  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
raw::ChannelID_t geo::GeometryCore::PlaneWireToChannel ( unsigned int const  plane,
unsigned int const  wire,
unsigned int const  tpc = 0,
unsigned int const  cstat = 0 
) const
inline

Definition at line 4738 of file GeometryCore.h.

4742  { return PlaneWireToChannel(geo::WireID(cstat, tpc, plane, wire)); }
raw::ChannelID_t PlaneWireToChannel(WireID const &wireid) const
Returns the ID of the TPC channel connected to the specified wire.
bool geo::GeometryCore::PointWithinSegments ( double  A_start_x,
double  A_start_y,
double  A_end_x,
double  A_end_y,
double  B_start_x,
double  B_start_y,
double  B_end_x,
double  B_end_y,
double  x,
double  y 
)
staticprivate

Returns whether x and y are within both specified ranges (A and B).

Definition at line 1913 of file GeometryCore.cxx.

1917  {
1918  return coordIs.withinSorted(x, A_start_x, A_end_x)
1919  && coordIs.withinSorted(y, A_start_y, A_end_y)
1920  && coordIs.withinSorted(x, B_start_x, B_end_x)
1921  && coordIs.withinSorted(y, B_start_y, B_end_y)
1922  ;
1923 
1924  } // GeometryCore::PointWithinSegments()
constexpr bool withinSorted(Value_t value, Value_t lower, Value_t upper) const
Returns whether value is between bounds (included); bounds are sorted.
static lar::util::RealComparisons< geo::Length_t > coordIs
Value of tolerance for equality comparisons.
list x
Definition: train.py:276
const AuxDetGeo & geo::GeometryCore::PositionToAuxDet ( geo::Point_t const &  point,
unsigned int &  ad,
double  tolerance = 0 
) const

Returns the auxiliary detector at specified location.

Parameters
pointlocation to be tested
ad_(output)_ the auxiliary detector index
tolerancetolerance (cm) for matches. Default 0.
Returns
constant reference to AuxDetGeo object of the auxiliary detector
Todo:
what happens if it does not exist?

Definition at line 511 of file GeometryCore.cxx.

512  {
513  // locate the desired Auxiliary Detector
514  ad = FindAuxDetAtPosition(point, tolerance);
515  return AuxDet(ad);
516  }
unsigned int FindAuxDetAtPosition(double const worldLoc[3], double tolerance=0) const
Returns the index of the auxiliary detector at specified location.
auto const tolerance
AuxDetGeo const & AuxDet(unsigned int const ad=0) const
Returns the specified auxiliary detector.
const AuxDetGeo & geo::GeometryCore::PositionToAuxDet ( double const  worldLoc[3],
unsigned int &  ad,
double  tolerance = 0 
) const

Returns the auxiliary detector at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
ad(output) the auxiliary detector index
tolerancetolerance (cm) for matches. Default 0.
Returns
constant reference to AuxDetGeo object of the auxiliary detector
Deprecated:
Use the version with geo::Point_t.
Todo:
what happens if it does not exist?

Definition at line 520 of file GeometryCore.cxx.

521  { return PositionToAuxDet(geo::vect::makePointFromCoords(worldLoc), ad, tolerance); }
auto const tolerance
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
AuxDetGeo const & PositionToAuxDet(geo::Point_t const &point, unsigned int &ad, double tolerance=0) const
Returns the auxiliary detector at specified location.
const AuxDetSensitiveGeo & geo::GeometryCore::PositionToAuxDetSensitive ( geo::Point_t const &  point,
size_t &  ad,
size_t &  sv,
double  tolerance = 0 
) const

Returns the auxiliary detector at specified location.

Parameters
pointlocation to be tested
ad_(output)_ the auxiliary detector index
sv_(output)_ the auxiliary detector sensitive volume index
tolerancetolerance (cm) for matches. Default 0.
Returns
reference to AuxDetSensitiveGeo object of the auxiliary detector
Todo:
what happens if it does not exist?

Definition at line 542 of file GeometryCore.cxx.

543  {
544  // locate the desired Auxiliary Detector
546  return AuxDet(ad).SensitiveVolume(sv);
547  }
void FindAuxDetSensitiveAtPosition(geo::Point_t const &point, std::size_t &adg, std::size_t &sv, double tolerance=0) const
Fills the indices of the sensitive auxiliary detector at location.
AuxDetSensitiveGeo const & SensitiveVolume(size_t sv) const
Definition: AuxDetGeo.h:171
auto const tolerance
AuxDetGeo const & AuxDet(unsigned int const ad=0) const
Returns the specified auxiliary detector.
const AuxDetSensitiveGeo & geo::GeometryCore::PositionToAuxDetSensitive ( double const  worldLoc[3],
size_t &  ad,
size_t &  sv,
double  tolerance = 0 
) const

Returns the auxiliary detector at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
ad(output) the auxiliary detector index
sv(output) the auxiliary detector sensitive volume index
tolerancetolerance (cm) for matches. Default 0.
Returns
reference to AuxDetSensitiveGeo object of the auxiliary detector
Todo:
what happens if it does not exist?
Deprecated:
Use the version with geo::Point_t.

Definition at line 551 of file GeometryCore.cxx.

auto const tolerance
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
const AuxDetSensitiveGeo & PositionToAuxDetSensitive(geo::Point_t const &point, size_t &ad, size_t &sv, double tolerance=0) const
Returns the auxiliary detector at specified location.
geo::CryostatGeo const & geo::GeometryCore::PositionToCryostat ( geo::Point_t const &  point) const

Returns the cryostat at specified location.

Parameters
pointthe location [cm]
Returns
a constant reference to the geo::CryostatGeo containing point
Exceptions
cet::exception("Geometry" category) if no cryostat matches

The tolerance used here is the one returned by DefaultWiggle().

Definition at line 460 of file GeometryCore.cxx.

461  {
462  geo::CryostatGeo const* cstat = PositionToCryostatPtr(point);
463  if (!cstat) {
464  throw cet::exception("GeometryCore")
465  << "Can't find any cryostat at position " << point << "\n";
466  }
467  return *cstat;
468  } // GeometryCore::PositionToCryostat()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
CryostatGeo const& geo::GeometryCore::PositionToCryostat ( double const  point[3]) const
inline

Definition at line 2097 of file GeometryCore.h.

CryostatGeo const & PositionToCryostat(geo::Point_t const &point) const
Returns the cryostat at specified location.
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
const CryostatGeo & geo::GeometryCore::PositionToCryostat ( double const  worldLoc[3],
geo::CryostatID cid 
) const

Returns the cryostat at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
cid(output) cryostat ID
Returns
a constant reference to the CryostatGeo object of the cryostat
Exceptions
cet::exception("Geometry" category) if no cryostat matches

The tolerance used here is the one returned by DefaultWiggle().

Deprecated:
Use PositionToCryostat(geo::Point_t const&) instead.

Definition at line 473 of file GeometryCore.cxx.

474  {
476 
477  if(cstat == geo::CryostatID::InvalidID)
478  throw cet::exception("GeometryCore") << "Can't find Cryostat for position ("
479  << worldLoc[0] << ","
480  << worldLoc[1] << ","
481  << worldLoc[2] << ")\n";
482  cid = geo::CryostatID(cstat);
483  return Cryostat(cid);
484  } // GeometryCore::PositionToCryostat(double[3], CryostatID)
IDparameter< geo::CryostatID > CryostatID
Member type of validated geo::CryostatID parameter.
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
unsigned int CryostatID_t
Type for the ID number.
Definition: geo_types.h:191
static constexpr CryostatID_t InvalidID
Special code for an invalid ID.
Definition: geo_types.h:208
geo::CryostatID::CryostatID_t FindCryostatAtPosition(geo::Point_t const &worldLoc) const
Returns the index of the cryostat at specified location.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
const CryostatGeo & geo::GeometryCore::PositionToCryostat ( double const  worldLoc[3],
unsigned int &  cstat 
) const

Returns the cryostat at specified location.

Parameters
worldLoc3D coordinates of the point (world reference frame)
cstat(output) number of cryostat
Returns
a constant reference to the CryostatGeo object of the cryostat
Exceptions
cet::exception("Geometry" category) if no cryostat matches

The tolerance used here is the one returned by DefaultWiggle().

Deprecated:
Use PositionToCryostat(geo::Point_t const&) instead.

Definition at line 487 of file GeometryCore.cxx.

488  {
489  geo::CryostatID cid;
490  geo::CryostatGeo const& cryo = PositionToCryostat(worldLoc, cid);
491  cstat = cid.Cryostat;
492  return cryo;
493  } // GeometryCore::PositionToCryostat(double[3], unsigned int)
CryostatGeo const & PositionToCryostat(geo::Point_t const &point) const
Returns the cryostat at specified location.
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::CryostatID geo::GeometryCore::PositionToCryostatID ( geo::Point_t const &  point) const

Returns the ID of the cryostat at specified location.

Parameters
pointthe location [cm]
Returns
ID of the cryostat including point (invalid if none)

The tolerance used here is the one returned by DefaultWiggle().

Definition at line 384 of file GeometryCore.cxx.

385  {
386  geo::CryostatGeo const* cryo = PositionToCryostatPtr(point);
387  return cryo? cryo->ID(): geo::CryostatID{};
388  } // GeometryCore::PositionToCryostatID()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::CryostatID const & ID() const
Returns the identifier of this cryostat.
Definition: CryostatGeo.h:132
geo::CryostatGeo const * geo::GeometryCore::PositionToCryostatPtr ( geo::Point_t const &  point) const

Returns the cryostat at specified location.

Parameters
pointthe location [cm]
Returns
pointer to the geo::CryostatGeo including point, or nullptr

The tolerance used here is the one returned by DefaultWiggle().

Definition at line 372 of file GeometryCore.cxx.

373  {
374  for (geo::CryostatGeo const& cryostat: IterateCryostats()) {
375  if (cryostat.ContainsPosition(point, 1.0 + fPositionWiggle))
376  return &cryostat;
377  }
378  return nullptr;
379  } // GeometryCore::PositionToCryostatPtr()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
double fPositionWiggle
accounting for rounding errors when testing positions
IteratorBox< cryostat_iterator,&GeometryCore::begin_cryostat,&GeometryCore::end_cryostat > IterateCryostats() const
Enables ranged-for loops on all cryostats of the detector.
geo::TPCGeo const & geo::GeometryCore::PositionToTPC ( geo::Point_t const &  point) const

Returns the TPC at specified location.

Parameters
pointthe location [cm]
Returns
a constant reference to the geo::TPCGeo including point
Exceptions
cet::exception("Geometry" category) if no TPC matches

Definition at line 419 of file GeometryCore.cxx.

420  {
421  geo::TPCGeo const* tpc = PositionToTPCptr(point);
422  if (!tpc) {
423  throw cet::exception("GeometryCore")
424  << "Can't find any TPC at position " << point << "\n";
425  }
426  return *tpc;
427  } // GeometryCore::PositionToTPC()
Geometry information for a single TPC.
Definition: TPCGeo.h:38
geo::TPCGeo const * PositionToTPCptr(geo::Point_t const &point) const
Returns the TPC at specified location.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
TPCGeo const& geo::GeometryCore::PositionToTPC ( double const  point[3]) const
inline

Definition at line 2484 of file GeometryCore.h.

2485  { return PositionToTPC(geo::vect::makePointFromCoords(point)); }
GENVECTOR_CONSTEXPR::geo::Point_t makePointFromCoords(Coords &&coords)
Creates a geo::Point_t from its coordinates (see makeFromCoords()).
geo::TPCGeo const & PositionToTPC(geo::Point_t const &point) const
Returns the TPC at specified location.
TPCGeo const & geo::GeometryCore::PositionToTPC ( double const  worldLoc[3],
unsigned int &  tpc,
unsigned int &  cstat 
) const

Returns the TPC at specified location.

Parameters
pointthe location [cm]
tpc_(output)_ where to store the number of TPC
cstat_(output)_ where to store the number of cryostat
Returns
a constant reference to the geo::TPCGeo including point
Exceptions
cet::exception("Geometry" category) if no TPC matches
Deprecated:
Use PositionToTPCID() or PositionToTPC().ID()

Definition at line 442 of file GeometryCore.cxx.

443  {
444  geo::TPCGeo const& TPC = PositionToTPC(worldLoc);
445  cstat = TPC.ID().Cryostat;
446  tpc = TPC.ID().TPC;
447  return TPC;
448  } // GeometryCore::PositionToTPC(double*, TPCID&)
geo::TPCID const & ID() const
Returns the identifier of this TPC.
Definition: TPCGeo.h:333
Geometry information for a single TPC.
Definition: TPCGeo.h:38
CryostatID_t Cryostat
Index of cryostat.
Definition: geo_types.h:212
geo::TPCGeo const & PositionToTPC(geo::Point_t const &point) const
Returns the TPC at specified location.
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
TPCID_t TPC
Index of the TPC within its cryostat.
Definition: geo_types.h:406
TPCGeo const & geo::GeometryCore::PositionToTPC ( double const  worldLoc[3],
TPCID tpcid 
) const

Returns the TPC at specified location.

Parameters
pointthe location [cm]
tpcid_(output)_ where to store the TPC ID
Returns
a constant reference to the geo::TPCGeo including point
Exceptions
cet::exception("Geometry" category) if no TPC matches
Deprecated:
Use PositionToTPCID() or PositionToTPC().ID()

Definition at line 432 of file GeometryCore.cxx.

433  {
434  geo::TPCGeo const& TPC = PositionToTPC(worldLoc);
435  tpcid = TPC.ID();
436  return TPC;
437  } // GeometryCore::PositionToTPC(double*, TPCID&)
geo::TPCID const & ID() const
Returns the identifier of this TPC.
Definition: TPCGeo.h:333
Geometry information for a single TPC.
Definition: TPCGeo.h:38
geo::TPCGeo const & PositionToTPC(geo::Point_t const &point) const
Returns the TPC at specified location.
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
geo::TPCID geo::GeometryCore::PositionToTPCID ( geo::Point_t const &  point) const

Returns the ID of the TPC at specified location.

Parameters
pointthe location [cm]
Returns
ID of the TPC at specified location, invalid if none
See also
PositionToTPC()

Definition at line 452 of file GeometryCore.cxx.

452  {
453  geo::TPCGeo const* tpc = PositionToTPCptr(point);
454  return tpc? tpc->ID(): geo::TPCID{};
455  } // GeometryCore::PositionToTPCID()
geo::TPCID const & ID() const
Returns the identifier of this TPC.
Definition: TPCGeo.h:333
Geometry information for a single TPC.
Definition: TPCGeo.h:38
geo::TPCGeo const * PositionToTPCptr(geo::Point_t const &point) const
Returns the TPC at specified location.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
geo::TPCGeo const * geo::GeometryCore::PositionToTPCptr ( geo::Point_t const &  point) const

Returns the TPC at specified location.

Parameters
pointthe location [cm]
Returns
the geo::TPCGeo including point, or nullptr if none

Definition at line 410 of file GeometryCore.cxx.

411  {
412  geo::CryostatGeo const* cryo = PositionToCryostatPtr(point);
413  return cryo? cryo->PositionToTPCptr(point, 1. + fPositionWiggle): nullptr;
414  } // GeometryCore::PositionToTPCptr()
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
geo::TPCGeo const * PositionToTPCptr(geo::Point_t const &point, double wiggle) const
Returns a pointer to the TPC at specified location.
double fPositionWiggle
accounting for rounding errors when testing positions
geo::CryostatGeo const * PositionToCryostatPtr(geo::Point_t const &point) const
Returns the cryostat at specified location.
template<typename Stream >
void geo::GeometryCore::Print ( Stream &&  out,
std::string  indent = "  " 
) const

Prints geometry information with maximum verbosity.

Definition at line 5704 of file GeometryCore.h.

5705 {
5706 
5707  out << "Detector " << DetectorName() << " has "
5708  << Ncryostats() << " cryostats and "
5709  << NAuxDets() << " auxiliary detectors:";
5710 
5711  auto const& detEnclosureBox = DetectorEnclosureBox();
5712  out << "\n" << indent << "Detector enclosure: "
5713  << detEnclosureBox.Min() << " -- " << detEnclosureBox.Max()
5714  << " cm => ( " << detEnclosureBox.SizeX() << " x "
5715  << detEnclosureBox.SizeY() << " x "
5716  << detEnclosureBox.SizeZ() << " ) cm^3"
5717  ;
5718 
5719  for (geo::CryostatGeo const& cryostat: IterateCryostats()) {
5720  out << "\n" << indent;
5721  cryostat.PrintCryostatInfo
5722  (std::forward<Stream>(out), indent + " ", cryostat.MaxVerbosity);
5723 
5724  const unsigned int nTPCs = cryostat.NTPC();
5725  for(unsigned int t = 0; t < nTPCs; ++t) {
5726  const geo::TPCGeo& tpc = cryostat.TPC(t);
5727 
5728  out << "\n" << indent << " ";
5729  tpc.PrintTPCInfo
5730  (std::forward<Stream>(out), indent + " ", tpc.MaxVerbosity);
5731 
5732  const unsigned int nPlanes = tpc.Nplanes();
5733  for(unsigned int p = 0; p < nPlanes; ++p) {
5734  const geo::PlaneGeo& plane = tpc.Plane(p);
5735  const unsigned int nWires = plane.Nwires();
5736 
5737  out << "\n" << indent << " ";
5738  plane.PrintPlaneInfo
5739  (std::forward<Stream>(out), indent + " ", plane.MaxVerbosity);
5740  geo::SigType_t const sigType = SignalType(plane.ID());
5741  out << "\n" << indent << " "
5742  << "signal type: " << SignalTypeName(sigType)
5743  << " (" << static_cast<int>(sigType) << ")";
5744 
5745  for(unsigned int w = 0; w < nWires; ++w) {
5746  const geo::WireGeo& wire = plane.Wire(w);
5747  geo::WireID wireID(plane.ID(), w);
5748 
5749  // the wire should be aligned on z axis, half on each side of 0,
5750  // in its local frame
5751  out << "\n" << indent << " " << wireID << " ";
5752  wire.PrintWireInfo
5753  (std::forward<Stream>(out), indent + " ", wire.MaxVerbosity);
5754  } // for wire
5755  } // for plane
5756  } // for TPC
5757 
5758  unsigned int nOpDets = cryostat.NOpDet();
5759  for (unsigned int iOpDet = 0; iOpDet < nOpDets; ++iOpDet) {
5760  geo::OpDetGeo const& opDet = cryostat.OpDet(iOpDet);
5761  out << "\n" << indent << " [OpDet #" << iOpDet << "] ";
5762  opDet.PrintOpDetInfo
5763  (std::forward<Stream>(out), indent + " ", opDet.MaxVerbosity);
5764  } // for
5765  } // for cryostat
5766 
5767  unsigned int const nAuxDets = NAuxDets();
5768  for (unsigned int iDet = 0; iDet < nAuxDets; ++iDet) {
5769  geo::AuxDetGeo const& auxDet = AuxDet(iDet);
5770 
5771  out << "\n" << indent << "[#" << iDet << "] ";
5772  auxDet.PrintAuxDetInfo
5773  (std::forward<Stream>(out), indent + " ", auxDet.MaxVerbosity);
5774 
5775  unsigned int const nSensitive = auxDet.NSensitiveVolume();
5776  switch (nSensitive) {
5777  case 0: break;
5778  case 1: {
5779  geo::AuxDetSensitiveGeo const& auxDetS = auxDet.SensitiveVolume(0U);
5780  out << "\n" << indent << " ";
5781  auxDetS.PrintAuxDetInfo
5782  (std::forward<Stream>(out), indent + " ", auxDetS.MaxVerbosity);
5783  break;
5784  }
5785  default:
5786  for (unsigned int iSens = 0; iSens < nSensitive; ++iSens) {
5787  out << "\n" << indent << "[#" << iSens << "] ";
5788  geo::AuxDetSensitiveGeo const& auxDetS
5789  = auxDet.SensitiveVolume(iSens);
5790  auxDetS.PrintAuxDetInfo
5791  (std::forward<Stream>(out), indent + " ", auxDetS.MaxVerbosity);
5792  } // for
5793  break;
5794  } // if sensitive detectors
5795 
5796  } // for auxiliary detector
5797 
5798  out << '\n';
5799 
5800 } // geo::GeometryCore::Print()
Geometry description of a TPC wireThe wire is a single straight segment on a wire plane...
Definition: WireGeo.h:65
void PrintWireInfo(Stream &&out, std::string indent="", unsigned int verbosity=1) const
Prints information about this wire.
Definition: WireGeo.h:596
void PrintTPCInfo(Stream &&out, std::string indent="", unsigned int verbosity=1) const
Prints information about this TPC.
Definition: TPCGeo.h:789
WireGeo const & Wire(unsigned int iwire) const
Definition: PlaneGeo.cxx:506
AuxDetSensitiveGeo const & SensitiveVolume(size_t sv) const
Definition: AuxDetGeo.h:171
unsigned int Nplanes() const
Number of planes in this tpc.
Definition: TPCGeo.h:165
Geometry information for a single TPC.
Definition: TPCGeo.h:38
geo::BoxBoundedGeo DetectorEnclosureBox(std::string const &name="volDetEnclosure") const
SigType_t SignalType(geo::PlaneID const &pid) const
Returns the type of signal on the channels of specified TPC plane.
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
std::string DetectorName() const
Returns a string with the name of the detector, as configured.
enum geo::_plane_sigtype SigType_t
Geometry information for a single wire plane.The plane is represented in the geometry by a solid whic...
Definition: PlaneGeo.h:82
void PrintOpDetInfo(Stream &&out, std::string indent="", unsigned int verbosity=0) const
Prints information about this optical detector.
Definition: OpDetGeo.h:296
p
Definition: test.py:223
size_t NSensitiveVolume() const
Definition: AuxDetGeo.h:172
AuxDetGeo const & AuxDet(unsigned int const ad=0) const
Returns the specified auxiliary detector.
void PrintAuxDetInfo(Stream &&out, std::string indent="", unsigned int verbosity=0) const
Prints information about this auxiliary sensitive detector.
IteratorBox< cryostat_iterator,&GeometryCore::begin_cryostat,&GeometryCore::end_cryostat > IterateCryostats() const
Enables ranged-for loops on all cryostats of the detector.
static constexpr unsigned int MaxVerbosity
Maximum verbosity supported by PrintAuxDetInfo().
void PrintPlaneInfo(Stream &&out, std::string indent="", unsigned int verbosity=1) const
Prints information about this plane.
Definition: PlaneGeo.h:1539
static constexpr unsigned int MaxVerbosity
Maximum verbosity supported by PrintOpDetInfo().
Definition: OpDetGeo.h:240
geo::PlaneID const & ID() const
Returns the identifier of this plane.
Definition: PlaneGeo.h:203
static constexpr unsigned int MaxVerbosity
Maximum verbosity supported by PrintAuxDetInfo().
Definition: AuxDetGeo.h:215
unsigned int Nwires() const
Number of wires in this plane.
Definition: PlaneGeo.h:269
static constexpr unsigned int MaxVerbosity
Maximum verbosity supported by PrintWireInfo().
Definition: WireGeo.h:338
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
static constexpr unsigned int MaxVerbosity
Maximum value for print verbosity.
Definition: PlaneGeo.h:802
static constexpr unsigned int MaxVerbosity
Maximum verbosity supported by PrintTPCInfo().
Definition: TPCGeo.h:677
void PrintAuxDetInfo(Stream &&out, std::string indent="", unsigned int verbosity=1) const
Prints information about this auxiliary detector.
Definition: AuxDetGeo.h:245
std::string SignalTypeName(geo::SigType_t sigType)
Returns the name of the specified signal type.
Definition: geo_types.cxx:19
unsigned int NAuxDets() const
Returns the number of auxiliary detectors.
std::string geo::GeometryCore::ROOTFile ( ) const
inline

Returns the full directory path to the geometry file source.

Returns
the full directory path to the geometry file source

This is the full path of the source of the detector geometry GeometryCore relies on.

Definition at line 1740 of file GeometryCore.h.

1740 { return fROOTfile; }
std::string fROOTfile
path to geometry file for geometry in GeometryCore
TGeoManager * geo::GeometryCore::ROOTGeoManager ( ) const

Access to the ROOT geometry description manager.

Definition at line 202 of file GeometryCore.cxx.

203  {
204  return gGeoManager;
205  }
std::vector< geo::TPCID > geo::GeometryCore::ROPtoTPCs ( readout::ROPID const &  ropid) const

Returns a list of ID of TPCs the specified ROP spans.

Parameters
ropidID of the readout plane
Returns
the list of TPC IDs, empty if readout plane ID is invalid

Note that this check is performed on the validity of the readout plane ID, that does not necessarily imply that the readout plane specified by the ID actually exists. Check if the ROP exists with HasROP(). The behaviour on non-existing readout planes is undefined.

Definition at line 1750 of file GeometryCore.cxx.

1751  {
1752  return fChannelMapAlg->ROPtoTPCs(ropid);
1753  } // GeometryCore::ROPtoTPCs()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
std::vector< geo::PlaneID > geo::GeometryCore::ROPtoWirePlanes ( readout::ROPID const &  ropid) const

Returns a list of ID of planes belonging to the specified ROP.

Parameters
ropidID of the readout plane
Returns
list of ID of wire planes belonging to the specified ROP

If ropid is an invalid ID, an empty list is returned. If ropid is a valid ID (i.e. an ID whose isValid flag is set) that points to a non-existent readout plane, the result is undefined. Use HasROP() to check if the readout plane actually exists.

Definition at line 1742 of file GeometryCore.cxx.

1743  {
1744  return fChannelMapAlg->ROPtoWirePlanes(ropid);
1745  } // GeometryCore::ROPtoWirePlanes()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
void geo::GeometryCore::SetDetectorName ( std::string const &  new_name)
inlineprotected

Sets the detector name.

Definition at line 5489 of file GeometryCore.h.

5489 { fDetectorName = new_name; }
std::string fDetectorName
Name of the detector.
SigType_t geo::GeometryCore::SignalType ( geo::PlaneID const &  pid) const

Returns the type of signal on the channels of specified TPC plane.

Parameters
planeTPC plane ID
Returns
the type of signal on the specified plane, or geo::kMysteryType

Assumes that all the channels on the plane have the same signal type.

Todo:
verify that kMysteryType is returned on invalid plane

Definition at line 578 of file GeometryCore.cxx.

579  {
580  // map wire plane -> readout plane -> first channel,
581  // then use SignalType(channel)
582 
583  auto const ropid = WirePlaneToROP(pid);
584  if (!ropid.isValid) {
585  throw cet::exception("GeometryCore")
586  << "SignalType(): Mapping of wire plane " << std::string(pid)
587  << " to readout plane failed!\n";
588  }
589  return SignalType(ropid);
590 
591  } // GeometryCore::SignalType(PlaneID)
std::string string
Definition: nybbler.cc:12
readout::ROPID WirePlaneToROP(geo::PlaneID const &planeid) const
Returns the ID of the ROP planeid belongs to.
SigType_t SignalType(geo::PlaneID const &pid) const
Returns the type of signal on the channels of specified TPC plane.
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
SigType_t geo::GeometryCore::SignalType ( raw::ChannelID_t const  channel) const

Returns the type of signal on the specified TPC channel.

Parameters
channelTPC channel ID
Returns
the type of signal on the specified channel, or geo::kMysteryType
Todo:
verify that kMysteryType is returned on invalid channel

Definition at line 572 of file GeometryCore.cxx.

573  {
574  return fChannelMapAlg->SignalTypeForChannel(channel);
575  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
uint8_t channel
Definition: CRTFragment.hh:201
geo::SigType_t geo::GeometryCore::SignalType ( readout::ROPID const &  ropid) const

Returns the type of signal of channels in specified readout plane.

Parameters
ropidreadout plane ID
Returns
the type of signal on the specified ROP

Assumes that all the channels on the readout plane have the same signal type. If ropid is an invalid ID, geo::kMysteryType is returned. If ropid is a valid ID (i.e. an ID whose isValid flag is set) that points to a non-existent readout plane, the result is undefined. Use HasROP() to check if the readout plane actually exists.

Definition at line 1771 of file GeometryCore.cxx.

1771  {
1772  return fChannelMapAlg->SignalTypeForROPID(ropid);
1773  } // GeometryCore::SignalType(ROPID)
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
void geo::GeometryCore::SortGeometry ( geo::GeoObjectSorter const &  sorter)
private

Runs the sorting of geometry with the sorter provided by channel mapping.

Definition at line 168 of file GeometryCore.cxx.

169  {
170  mf::LogInfo("GeometryCore") << "Sorting volumes...";
171 
172  sorter.SortAuxDets(AuxDets());
173  sorter.SortCryostats(Cryostats());
174 
176  for (geo::CryostatGeo& cryo: Cryostats())
177  {
178  cryo.SortSubVolumes(sorter);
179  cryo.UpdateAfterSorting(geo::CryostatID(c));
180  ++c;
181  } // for
182 
183  } // GeometryCore::SortGeometry()
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
AuxDetList_t & AuxDets()
Return the interfal auxiliary detectors list.
unsigned int CryostatID_t
Type for the ID number.
Definition: geo_types.h:191
CryostatList_t & Cryostats()
Return the internal cryostat list.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
geo::Length_t geo::GeometryCore::SurfaceY ( ) const
inline

The position of the detector respect to earth surface.

Returns
typical y position at surface in units of cm

This is the depth (y) of the surface (where earth meets air) for this detector site. The number is expressed in world coordinates and in centimetres, and it represents the y coordinate of earth surface. A negative value means that the origin of coordinates, typically matching the detector centre, is above surface.

Todo:
check that this is actually how it is used

Definition at line 1812 of file GeometryCore.h.

1812 { return fSurfaceY; }
double fSurfaceY
The point where air meets earth for this detector.
geo::PlaneID geo::GeometryCore::ThirdPlane ( geo::PlaneID const &  pid1,
geo::PlaneID const &  pid2 
) const

Returns the plane that is not in the specified arguments.

Parameters
pid1a plane
pid2another plane
Returns
the ID to the third plane
Exceptions
cet::exception(category: "GeometryCore") if other than 3 planes
cet::exception(category: "GeometryCore") if pid1 and pid2 match

This function requires a geometry with exactly three planes. If the two input planes are not on the same TPC, the result is undefined.

Definition at line 1482 of file GeometryCore.cxx.

1483  {
1484  // how many planes in the TPC pid1 belongs to:
1485  const unsigned int nPlanes = Nplanes(pid1);
1486  if(nPlanes != 3) {
1487  throw cet::exception("GeometryCore")
1488  << "ThirdPlane() supports only TPCs with 3 planes, and I see "
1489  << nPlanes << " instead\n";
1490  }
1491 
1492  geo::PlaneID::PlaneID_t target_plane = nPlanes;
1493  for (geo::PlaneID::PlaneID_t iPlane = 0; iPlane < nPlanes; ++iPlane){
1494  if ((iPlane == pid1.Plane) || (iPlane == pid2.Plane)) continue;
1495  if (target_plane != nPlanes) {
1496  throw cet::exception("GeometryCore")
1497  << "ThirdPlane() found too many planes that are not "
1498  << std::string(pid1) << " nor " << std::string(pid2)
1499  << "! (first " << target_plane << ", then " << iPlane << ")\n";
1500  } // if we had a target already
1501  target_plane = iPlane;
1502  } // for
1503  if (target_plane == nPlanes) {
1504  throw cet::exception("GeometryCore")
1505  << "ThirdPlane() can't find a plane that is not " << std::string(pid1)
1506  << " nor " << std::string(pid2) << "!\n";
1507  }
1508 
1509  return geo::PlaneID(pid1, target_plane);
1510  } // GeometryCore::ThirdPlane()
std::string string
Definition: nybbler.cc:12
unsigned int PlaneID_t
Type for the ID number.
Definition: geo_types.h:473
unsigned int Nplanes(unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wire planes in the specified TPC.
detail::Node< FrameID, bool > PlaneID
Definition: CRTID.h:125
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
double geo::GeometryCore::ThirdPlane_dTdW ( geo::PlaneID const &  pid1,
double  slope1,
geo::PlaneID const &  pid2,
double  slope2,
geo::PlaneID const &  output_plane 
) const

Returns dT/dW on the third plane, given it in the other two.

Parameters
pid1ID of the plane of the first dT/dW
dTdW1dT/dW as seen on the first plane
pid2ID of the plane of the second dT/dW
dTdW2dT/dW as seen on the second plane
output_planeID of the plane on which to calculate the slope
Returns
dT/dW on the third plane, or -999. if dT/dW would be infinity
Exceptions
cet::exception(category: "GeometryCore") if different TPC
cet::exception(category: "GeometryCore") if same plane
cet::exception(category: "GeometryCore") if other than 3 planes

Given a dT/dW as projected in two planes, returns the dT/dW as projected in the third plane. The dT/dW are defined in time ticks/wide number units.

Definition at line 1559 of file GeometryCore.cxx.

1563  {
1564 
1565  CheckIndependentPlanesOnSameTPC(pid1, pid2, "ThirdPlane_dTdW()");
1566 
1567  geo::TPCGeo const& TPC = this->TPC(pid1);
1568 
1569  double angle[3], pitch[3];
1570  geo::PlaneGeo const* const planes[3]
1571  = { &TPC.Plane(pid1), &TPC.Plane(pid2), &TPC.Plane(output_plane) };
1572 
1573  // We need wire pitch and "wire coordinate direction" for each plane.
1574  // The latter is perpendicular to the wire orientation.
1575  // PlaneGeo::PhiZ() defines the right orientation too.
1576  for (size_t i = 0; i < 3; ++i) {
1577  angle[i] = planes[i]->PhiZ();
1578  pitch[i] = planes[i]->WirePitch();
1579  } // for
1580 
1581  return ComputeThirdPlane_dTdW(
1582  angle[0], pitch[0], slope1,
1583  angle[1], pitch[1], slope2,
1584  angle[2], pitch[2]
1585  );
1586 
1587  } // GeometryCore::ThirdPlane_dTdW()
static double ComputeThirdPlane_dTdW(double angle1, double pitch1, double dTdW1, double angle2, double pitch2, double dTdW2, double angle_target, double pitch_target)
Returns the slope on the third plane, given it in the other two.
Geometry information for a single TPC.
Definition: TPCGeo.h:38
double PhiZ() const
Angle from positive z axis of the wire coordinate axis, in radians.
Definition: PlaneGeo.h:193
Geometry information for a single wire plane.The plane is represented in the geometry by a solid whic...
Definition: PlaneGeo.h:82
static void CheckIndependentPlanesOnSameTPC(geo::PlaneID const &pid1, geo::PlaneID const &pid2, const char *caller)
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
double WirePitch() const
Return the wire pitch (in centimeters). It is assumed constant.
Definition: PlaneGeo.h:411
double geo::GeometryCore::ThirdPlane_dTdW ( geo::PlaneID const &  pid1,
double  slope1,
geo::PlaneID const &  pid2,
double  slope2 
) const

Returns dT/dW on the third plane, given it in the other two.

Parameters
pid1ID of the plane of the first dT/dW
dTdW1dT/dW as seen on the first plane
pid2ID of the plane of the second dT/dW
dTdW2dT/dW as seen on the second plane
Returns
dT/dW on the third plane, or -999. if dT/dW would be infinity
Exceptions
cet::exception(category: "GeometryCore") if different TPC
cet::exception(category: "GeometryCore") if same plane
cet::exception(category: "GeometryCore") if other than 3 planes

Given a dT/dW as projected in two planes, returns the dT/dW as projected in the third plane. This function is a shortcut assuming exactly three wire planes in the TPC, in which case the output plane is chosen as the one that is neither of the input planes.

Definition at line 1590 of file GeometryCore.cxx.

1593  {
1594  geo::PlaneID target_plane = ThirdPlane(pid1, pid2);
1595  return ThirdPlane_dTdW(pid1, slope1, pid2, slope2, target_plane);
1596  } // ThirdPlane_dTdW()
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::PlaneID ThirdPlane(geo::PlaneID const &pid1, geo::PlaneID const &pid2) const
Returns the plane that is not in the specified arguments.
double ThirdPlane_dTdW(geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
Returns dT/dW on the third plane, given it in the other two.
double geo::GeometryCore::ThirdPlaneSlope ( geo::PlaneID const &  pid1,
double  slope1,
geo::PlaneID const &  pid2,
double  slope2,
geo::PlaneID const &  output_plane 
) const

Returns the slope on the third plane, given it in the other two.

Parameters
pid1ID of the plane of the first slope
slope1slope as seen on the first plane
pid2ID of the plane of the second slope
slope2slope as seen on the second plane
output_planeID of the plane on which to calculate the slope
Returns
the slope on the third plane, or -999. if slope would be infinity
Exceptions
cet::exception(category: "GeometryCore") if different TPC
cet::exception(category: "GeometryCore") if input planes match

Given a slope as projected in two planes, returns the slope as projected in the specified output plane. The slopes are defined in uniform units; they should be computed as distance ratios (or tangent of a geometrical angle; the formula is still valid using dt/dw directly in case of equal wire pitch in all planes and uniform drift velocity.

Definition at line 1529 of file GeometryCore.cxx.

1533  {
1534 
1535  CheckIndependentPlanesOnSameTPC(pid1, pid2, "ThirdPlaneSlope()");
1536 
1537  geo::TPCGeo const& TPC = this->TPC(pid1);
1538 
1539  // We need the "wire coordinate direction" for each plane.
1540  // This is perpendicular to the wire orientation.
1541  // PlaneGeo::PhiZ() defines the right orientation too.
1542  return ComputeThirdPlaneSlope(
1543  TPC.Plane(pid1).PhiZ(), slope1,
1544  TPC.Plane(pid2).PhiZ(), slope2,
1545  TPC.Plane(output_plane).PhiZ()
1546  );
1547  } // ThirdPlaneSlope()
Geometry information for a single TPC.
Definition: TPCGeo.h:38
double PhiZ() const
Angle from positive z axis of the wire coordinate axis, in radians.
Definition: PlaneGeo.h:193
static double ComputeThirdPlaneSlope(double angle1, double slope1, double angle2, double slope2, double angle_target)
Returns the slope on the third plane, given it in the other two.
static void CheckIndependentPlanesOnSameTPC(geo::PlaneID const &pid1, geo::PlaneID const &pid2, const char *caller)
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
double geo::GeometryCore::ThirdPlaneSlope ( geo::PlaneID const &  pid1,
double  slope1,
geo::PlaneID const &  pid2,
double  slope2 
) const

Returns the slope on the third plane, given it in the other two.

Parameters
pid1ID of the plane of the first slope
slope1slope as seen on the first plane
pid2ID of the plane of the second slope
slope2slope as seen on the second plane
Returns
the slope on the third plane, or -999. if slope would be infinity
Exceptions
cet::exception(category: "GeometryCore") if different TPC
cet::exception(category: "GeometryCore") if same plane
cet::exception(category: "GeometryCore") if other than 3 planes

Given a slope as projected in two planes, returns the slope as projected in the third plane. This function is a shortcut assuming exactly three wire planes in the TPC, in which case the output plane is chosen as the one that is neither of the input planes.

Definition at line 1550 of file GeometryCore.cxx.

1553  {
1554  geo::PlaneID target_plane = ThirdPlane(pid1, pid2);
1555  return ThirdPlaneSlope(pid1, slope1, pid2, slope2, target_plane);
1556  } // ThirdPlaneSlope()
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
double ThirdPlaneSlope(geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
Returns the slope on the third plane, given it in the other two.
geo::PlaneID ThirdPlane(geo::PlaneID const &pid1, geo::PlaneID const &pid2) const
Returns the plane that is not in the specified arguments.
double geo::GeometryCore::ThirdPlaneSlope ( geo::PlaneID::PlaneID_t  plane1,
double  slope1,
geo::PlaneID::PlaneID_t  plane2,
double  slope2,
geo::TPCID const &  tpcid 
) const
inline

Returns the slope on the third plane, given it in the other two.

Parameters
plane1index of the plane of the first slope
slope1slope as seen on the first plane
plane2index of the plane of the second slope
slope2slope as seen on the second plane
tpcidTPC where the two planes belong
Returns
the slope on the third plane, or -999. if slope would be infinity
Exceptions
cet::exception(category: "GeometryCore") if different TPC
cet::exception(category: "GeometryCore") if same plane
cet::exception(category: "GeometryCore") if other than 3 planes

Given a slope as projected in two planes, returns the slope as projected in the third plane.

Definition at line 4349 of file GeometryCore.h.

4352  {
4353  return ThirdPlaneSlope(
4354  geo::PlaneID(tpcid, plane1), slope1,
4355  geo::PlaneID(tpcid, plane2), slope2
4356  );
4357  }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
double ThirdPlaneSlope(geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
Returns the slope on the third plane, given it in the other two.
double geo::GeometryCore::ThirdPlaneSlope ( unsigned int  plane1,
double  slope1,
unsigned int  plane2,
double  slope2,
unsigned int  tpc,
unsigned int  cstat 
) const
inline

Definition at line 4358 of file GeometryCore.h.

4361  {
4362  return ThirdPlaneSlope
4363  (plane1, slope1, plane2, slope2, geo::TPCID(cstat, tpc));
4364  }
double ThirdPlaneSlope(geo::PlaneID const &pid1, double slope1, geo::PlaneID const &pid2, double slope2, geo::PlaneID const &output_plane) const
Returns the slope on the third plane, given it in the other two.
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
double geo::GeometryCore::TotalMass ( ) const
inline

Returns the total mass [kg] of the specified volume (default: world).

Definition at line 1891 of file GeometryCore.h.

1891 { return TotalMass(GetWorldVolumeName()); }
const std::string GetWorldVolumeName() const
Return the name of the world volume (needed by Geant4 simulation)
double TotalMass() const
Returns the total mass [kg] of the specified volume (default: world).
double geo::GeometryCore::TotalMass ( std::string  vol) const

Definition at line 1042 of file GeometryCore.cxx.

1043  {
1044  //the TGeoNode::GetVolume() returns the TGeoVolume of the detector outline
1045  //and ROOT calculates the mass in kg for you
1046  TGeoVolume *gvol = gGeoManager->FindVolumeFast(vol.c_str());
1047  if(gvol) return gvol->Weight();
1048 
1049  throw cet::exception("GeometryCore") << "could not find specified volume '"
1050  << vol
1051  << " 'to determine total mass\n";
1052  }
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
unsigned int geo::GeometryCore::TotalNTPC ( ) const

Returns the total number of TPCs in the detector.

Definition at line 868 of file GeometryCore.cxx.

868  {
869  // it looks like C++11 lambdas have made STL algorithms easier to use,
870  // but only so much:
871  return std::accumulate(Cryostats().begin(), Cryostats().end(), 0U,
872  [](unsigned int sum, geo::CryostatGeo const& cryo)
873  { return sum + cryo.NTPC(); }
874  );
875  } // GeometryCore::TotalNTPC()
end
while True: pbar.update(maxval-len(onlies[E][S])) #print iS, "/", len(onlies[E][S]) found = False for...
Geometry information for a single cryostat.
Definition: CryostatGeo.h:43
unsigned int NTPC() const
Number of TPCs in this cryostat.
Definition: CryostatGeo.h:181
CryostatList_t & Cryostats()
Return the internal cryostat list.
decltype(auto) constexpr begin(T &&obj)
ADL-aware version of std::begin.
Definition: StdUtils.h:72
TPCGeo const& geo::GeometryCore::TPC ( unsigned int const  tpc = 0,
unsigned int const  cstat = 0 
) const
inline

Returns the specified TPC.

Parameters
tpcidID of the tpc
tpctpc number within the cryostat
cstatnumber of cryostat
Returns
a constant reference to the specified TPC
Exceptions
cet::exception(GeometryCore category) if cryostat not present
cet::exception(TPCOutOfRange category) if no such TPC

The GetElement() method is overloaded and its return depends on the type of ID.

Todo:
remove the version with integers

Definition at line 2423 of file GeometryCore.h.

2424  { return TPC(geo::TPCID(cstat, tpc)); }
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
TPCGeo const& geo::GeometryCore::TPC ( geo::TPCID const &  tpcid) const
inline

Definition at line 2425 of file GeometryCore.h.

2426  { return Cryostat(tpcid).TPC(tpcid); }
CryostatGeo const & Cryostat(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
const TPCGeo & TPC(unsigned int itpc) const
Return the itpc&#39;th TPC in the cryostat.
Definition: CryostatGeo.cxx:93
TPCGeo const* geo::GeometryCore::TPCPtr ( geo::TPCID const &  tpcid) const
inline

Returns the specified TPC.

Parameters
tpcidTPC ID
Returns
a constant pointer to the specified TPC, or nullptr if none

The GetElementPtr() method is overloaded and its return depends on the type of ID.

Definition at line 2440 of file GeometryCore.h.

2441  {
2442  CryostatGeo const* pCryo = CryostatPtr(tpcid);
2443  return pCryo? pCryo->TPCPtr(tpcid): nullptr;
2444  } // TPCPtr()
CryostatGeo const * CryostatPtr(geo::CryostatID const &cryoid) const
Returns the specified cryostat.
std::vector< geo::TPCID > geo::GeometryCore::TPCsetToTPCs ( readout::TPCsetID const &  tpcsetid) const

Returns a list of ID of TPCs belonging to the specified TPC set.

Parameters
tpcsetidID of the TPC set to convert into TPC IDs
Returns
the list of TPCs, empty if TPC set is invalid

Note that the check is performed on the validity of the TPC set ID, that does not necessarily imply that the TPC set specified by the ID actually exists. Check the existence of the TPC set first (HasTPCset()). Behaviour on valid, non-existent TPC set IDs is undefined.

Definition at line 1706 of file GeometryCore.cxx.

1707  {
1708  return fChannelMapAlg->TPCsetToTPCs(tpcsetid);
1709  } // GeometryCore::TPCsetToTPCs()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
readout::TPCsetID geo::GeometryCore::TPCtoTPCset ( geo::TPCID const &  tpcid) const

Returns the ID of the TPC set tpcid belongs to.

Definition at line 1698 of file GeometryCore.cxx.

1699  {
1700  return fChannelMapAlg->TPCtoTPCset(tpcid);
1701  } // GeometryCore::TPCtoTPCset()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
void geo::GeometryCore::UpdateAfterSorting ( )
private

Performs all the updates needed after sorting.

Definition at line 187 of file GeometryCore.cxx.

187  {
188 
189  for (size_t c = 0; c < Ncryostats(); ++c)
190  Cryostats()[c].UpdateAfterSorting(geo::CryostatID(c));
191 
192  allViews.clear();
193  for (geo::TPCGeo const& tpc: IterateTPCs()) {
194  auto const& TPCviews = tpc.Views();
195  allViews.insert(TPCviews.cbegin(), TPCviews.cend());
196  }
197 
198  } // GeometryCore::UpdateAfterSorting()
Geometry information for a single TPC.
Definition: TPCGeo.h:38
unsigned int Ncryostats() const
Returns the number of cryostats in the detector.
std::set< geo::View_t > allViews
All views in the detector.
IteratorBox< TPC_iterator,&GeometryCore::begin_TPC,&GeometryCore::end_TPC > IterateTPCs() const
Enables ranged-for loops on all TPCs of the detector.
CryostatList_t & Cryostats()
Return the internal cryostat list.
The data type to uniquely identify a cryostat.
Definition: geo_types.h:190
bool geo::GeometryCore::ValueInRange ( double  value,
double  min,
double  max 
) const

Returns whether a value is within the specified range.

Parameters
valuethe value to be tested
minthe lower boundary
maxthe upper boundary
Returns
whether the value is within range

If min is larger than max, they are swapped. A tolerance of 10^-6 (absolute) is used.

Todo:

Use wiggle instead of 10^-6

resort source code for a bit of speed up

Definition at line 1234 of file GeometryCore.cxx.

1235  {
1236  if(min>max) std::swap(min,max);//protect against funny business due to wire angles
1237  if (std::abs(value-min)<1e-6||std::abs(value-max)<1e-6) return true;
1238  return (value>=min) && (value<=max);
1239  }
T abs(T value)
const double e
void swap(Handle< T > &a, Handle< T > &b)
static int max(int a, int b)
T min(sqlite3 *const db, std::string const &table_name, std::string const &column_name)
Definition: statistics.h:55
View_t geo::GeometryCore::View ( geo::PlaneID const &  pid) const

Returns the view (wire orientation) on the channels of specified TPC plane.

Parameters
planeTPC plane ID
Returns
the type of signal on the specified plane, or geo::kUnknown

Definition at line 601 of file GeometryCore.cxx.

602  {
603  return pid? Plane(pid).View(): geo::kUnknown;
604  }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
Unknown view.
Definition: geo_types.h:136
View_t View() const
Which coordinate does this plane measure.
Definition: PlaneGeo.h:184
View_t geo::GeometryCore::View ( raw::ChannelID_t const  channel) const

Returns the view (wire orientation) on the specified TPC channel.

Parameters
channelTPC channel ID
Returns
the type of signal on the specified channel, or geo::kUnknown

The view of the readout plane channel belongs to is returned, as in View(readout::ROPID const&) const.

Definition at line 595 of file GeometryCore.cxx.

595  {
596  return (channel == raw::InvalidChannelID)
598  } // GeometryCore::View()
Unknown view.
Definition: geo_types.h:136
uint8_t channel
Definition: CRTFragment.hh:201
constexpr ChannelID_t InvalidChannelID
ID of an invalid channel.
Definition: RawTypes.h:32
View_t View(geo::PlaneID const &pid) const
Returns the view (wire orientation) on the channels of specified TPC plane.
readout::ROPID ChannelToROP(raw::ChannelID_t channel) const
geo::View_t geo::GeometryCore::View ( readout::ROPID const &  ropid) const

Returns the view of the channels in the specified readout plane.

Parameters
ropidreadout plane ID
Returns
the type of signal on the specified ROP

Returns the view (wire orientation) on the channels of specified readout plane. If ropid is an invalid ID, geo::kUnknown is returned. If ropid is a valid ID (i.e. an ID whose isValid flag is set) that points to a non-existent readout plane, the result is undefined. Use HasROP() to check if the readout plane actually exists.

Definition at line 1765 of file GeometryCore.cxx.

1765  {
1766  return View(fChannelMapAlg->FirstWirePlaneInROP(ropid));
1767  } // GeometryCore::View()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
View_t View(geo::PlaneID const &pid) const
Returns the view (wire orientation) on the channels of specified TPC plane.
std::set<geo::View_t> const& geo::GeometryCore::Views ( ) const
inline

Returns a list of possible views in the detector.

Returns
the set of views

Definition at line 4707 of file GeometryCore.h.

4707 { return allViews; }
std::set< geo::View_t > allViews
All views in the detector.
std::string geo::GeometryCore::VolumeName ( geo::Point_t const &  point) const

Returns the name of the deepest volume containing specified point.

Parameters
pointthe location to query, in world coordinates
Returns
name of the volume containing the point
Todo:

what happens if none?

Unify the coordinates type

Definition at line 940 of file GeometryCore.cxx.

941  {
942  // check that the given point is in the World volume at least
943  TGeoVolume const*volWorld = WorldVolume();
944  double halflength = ((TGeoBBox*)volWorld->GetShape())->GetDZ();
945  double halfheight = ((TGeoBBox*)volWorld->GetShape())->GetDY();
946  double halfwidth = ((TGeoBBox*)volWorld->GetShape())->GetDX();
947  if(std::abs(point.x()) > halfwidth ||
948  std::abs(point.y()) > halfheight ||
949  std::abs(point.z()) > halflength
950  ){
951  mf::LogWarning("GeometryCoreBadInputPoint") << "point (" << point.x() << ","
952  << point.y() << "," << point.z() << ") "
953  << "is not inside the world volume "
954  << " half width = " << halfwidth
955  << " half height = " << halfheight
956  << " half length = " << halflength
957  << " returning unknown volume name";
958  const std::string unknown("unknownVolume");
959  return unknown;
960  }
961 
962  return gGeoManager->FindNode(point.X(), point.Y(), point.Z())->GetName();
963  }
std::string string
Definition: nybbler.cc:12
TGeoVolume const * WorldVolume() const
Returns a pointer to the world volume.
T abs(T value)
constexpr ProductStatus unknown() noexcept
Definition: ProductStatus.h:31
MaybeLogger_< ELseverityLevel::ELsev_warning, false > LogWarning
std::string geo::GeometryCore::VolumeName ( TVector3 const &  point) const
inline

Definition at line 1842 of file GeometryCore.h.

1843  { return VolumeName(geo::vect::toPoint(point)); }
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
std::string VolumeName(geo::Point_t const &point) const
Returns the name of the deepest volume containing specified point.
WireGeo const& geo::GeometryCore::Wire ( geo::WireID const &  wireid) const
inline

Returns the specified wire.

Parameters
wireidID of the wire
Returns
a constant reference to the specified wire
Exceptions
cet::exceptionif not found

The GetElement() method is overloaded and its return depends on the type of ID.

Definition at line 3419 of file GeometryCore.h.

3420  { return Plane(wireid).Wire(wireid); }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
WireGeo const & Wire(unsigned int iwire) const
Definition: PlaneGeo.cxx:506
double geo::GeometryCore::WireAngleToVertical ( geo::View_t  view,
geo::TPCID const &  tpcid 
) const

Returns the angle of the wires in the specified view from vertical.

Parameters
viewthe view
TPCthe index of the TPC in the specified cryostat
Cryothe cryostat
tpcidID of the TPC
Returns
the angle [radians]
Exceptions
cet::exception("GeometryCore" category) if no such view

The angle is defined as in WireGeo::ThetaZ().

This method assumes all wires in the view have the same angle (it queries for the first).

Deprecated:
This does not feel APA-ready

Definition at line 843 of file GeometryCore.cxx.

844  {
845  // loop over the planes in cryostat 0, tpc 0 to find the plane with the
846  // specified view
847  geo::TPCGeo const& TPC = this->TPC(tpcid);
848  for (unsigned int p = 0; p < TPC.Nplanes(); ++p) {
849  geo::PlaneGeo const& plane = TPC.Plane(p);
850  if (plane.View() == view) return plane.ThetaZ();
851  } // for
852  throw cet::exception("GeometryCore") << "WireAngleToVertical(): no view \""
853  << geo::PlaneGeo::ViewName(view) << "\" (#" << ((int) view)
854  << ") in " << std::string(tpcid);
855  } // GeometryCore::WireAngleToVertical()
static std::string ViewName(geo::View_t view)
Returns the name of the specified view.
Definition: PlaneGeo.cxx:763
std::string string
Definition: nybbler.cc:12
unsigned int Nplanes() const
Number of planes in this tpc.
Definition: TPCGeo.h:165
Geometry information for a single TPC.
Definition: TPCGeo.h:38
double ThetaZ() const
Angle of the wires from positive z axis; .
Definition: PlaneGeo.cxx:726
View_t View() const
Which coordinate does this plane measure.
Definition: PlaneGeo.h:184
Geometry information for a single wire plane.The plane is represented in the geometry by a solid whic...
Definition: PlaneGeo.h:82
p
Definition: test.py:223
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
PlaneGeo const & Plane(geo::View_t view) const
Return the plane in the tpc with View_t view.
Definition: TPCGeo.cxx:263
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
double geo::GeometryCore::WireAngleToVertical ( geo::View_t  view,
int  TPC = 0,
int  Cryo = 0 
) const
inline

Definition at line 3802 of file GeometryCore.h.

3803  { return WireAngleToVertical(view, geo::TPCID(Cryo, TPC)); }
The data type to uniquely identify a TPC.
Definition: geo_types.h:386
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
double WireAngleToVertical(geo::View_t view, geo::TPCID const &tpcid) const
Returns the angle of the wires in the specified view from vertical.
geo::Length_t geo::GeometryCore::WireCoordinate ( double  YPos,
double  ZPos,
geo::PlaneID const &  planeid 
) const

Returns the index of the nearest wire to the specified position.

Parameters
YPosy coordinate on the wire plane
ZPosz coordinate on the wire plane
planeidID of the plane
Returns
an index interpolation between the two nearest wires
Deprecated:
Use WireCoordinate(geo::Point_t const&, geo::PlaneID const&) instead

Respect to NearestWireID(), this method returns a real number, representing a continuous coordinate in the wire axis, with the round values corresponding to the actual wires.

Todo:
Unify (y, z) coordinate

Definition at line 1128 of file GeometryCore.cxx.

1129  {
1130  return fChannelMapAlg->WireCoordinate(YPos, ZPos, planeid);
1131  }
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
geo::Length_t geo::GeometryCore::WireCoordinate ( double  YPos,
double  ZPos,
unsigned int  PlaneNo,
unsigned int  TPCNo,
unsigned int  cstat 
) const
inline

Returns the index of the nearest wire to the specified position.

Parameters
YPosy coordinate on the wire plane
ZPosz coordinate on the wire plane
PlaneNonumber of plane
TPCNonumber of TPC
cstatnumber of cryostat
Returns
an index interpolation between the two nearest wires
See also
ChannelMapAlg::WireCoordinate()
Deprecated:
Use the version with plane ID instead

Definition at line 4061 of file GeometryCore.h.

4065  { return WireCoordinate(YPos, ZPos, geo::PlaneID(cstat, TPCNo, PlaneNo)); }
geo::Length_t WireCoordinate(double YPos, double ZPos, geo::PlaneID const &planeid) const
Returns the index of the nearest wire to the specified position.
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::Length_t geo::GeometryCore::WireCoordinate ( geo::Point_t const &  pos,
geo::PlaneID const &  planeid 
) const

Returns the index of the nearest wire to the specified position.

Parameters
posworld coordinates of the position (it will be projected)
planeidID of the plane
Returns
an index interpolation between the two nearest wires
See also
ChannelMapAlg::WireCoordinate()

Respect to NearestWireID(), this method returns a real number, representing a continuous coordinate in the wire axis, with the round values corresponding to the actual wires.

Definition at line 1121 of file GeometryCore.cxx.

1122  {
1123  return Plane(planeid).WireCoordinate(pos);
1124  }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
double WireCoordinate(Point const &point) const
Returns the coordinate of the point on the plane, in wire units.
Definition: PlaneGeo.h:882
geo::Length_t geo::GeometryCore::WireCoordinate ( TVector3 const &  pos,
geo::PlaneID const &  planeid 
) const
inline

Definition at line 4082 of file GeometryCore.h.

4083  { return WireCoordinate(geo::vect::toPoint(pos), planeid); }
geo::Length_t WireCoordinate(double YPos, double ZPos, geo::PlaneID const &planeid) const
Returns the index of the nearest wire to the specified position.
::geo::Point_t toPoint(Point const &p)
Convert the specified point into a geo::Point_t.
void geo::GeometryCore::WireEndPoints ( geo::WireID const &  wireid,
double *  xyzStart,
double *  xyzEnd 
) const

Fills two arrays with the coordinates of the wire end points.

Parameters
wireidID of the wire
xyzStart(output) an array with the start coordinate
xyzEnd(output) an array with the end coordinate
Exceptions
cet::exceptionwire not present

The starting point is the wire end with lower z coordinate.

Deprecated:
use the wire ID interface instead (but note that it does not sort the ends)

Definition at line 1243 of file GeometryCore.cxx.

1244  {
1245  Segment_t result = WireEndPoints(wireid);
1246 
1247  xyzStart[0] = result.start().X();
1248  xyzStart[1] = result.start().Y();
1249  xyzStart[2] = result.start().Z();
1250  xyzEnd[0] = result.end().X();
1251  xyzEnd[1] = result.end().Y();
1252  xyzEnd[2] = result.end().Z();
1253 
1254  if(xyzEnd[2]<xyzStart[2]){
1255  //ensure that "End" has higher z-value than "Start"
1256  std::swap(xyzStart[0],xyzEnd[0]);
1257  std::swap(xyzStart[1],xyzEnd[1]);
1258  std::swap(xyzStart[2],xyzEnd[2]);
1259  }
1260  if(xyzEnd[1]<xyzStart[1] && std::abs(xyzEnd[2]-xyzStart[2])<0.01){
1261  // if wire is vertical ensure that "End" has higher y-value than "Start"
1262  std::swap(xyzStart[0],xyzEnd[0]);
1263  std::swap(xyzStart[1],xyzEnd[1]);
1264  std::swap(xyzStart[2],xyzEnd[2]);
1265  }
1266 
1267  } // GeometryCore::WireEndPoints(WireID, 2x double*)
static QCString result
T abs(T value)
void swap(Handle< T > &a, Handle< T > &b)
Segment< DefaultPoint_t > Segment_t
void WireEndPoints(geo::WireID const &wireid, double *xyzStart, double *xyzEnd) const
Fills two arrays with the coordinates of the wire end points.
void geo::GeometryCore::WireEndPoints ( unsigned int  cstat,
unsigned int  tpc,
unsigned int  plane,
unsigned int  wire,
double *  xyzStart,
double *  xyzEnd 
) const
inline

Fills two arrays with the coordinates of the wire end points.

Parameters
cstatcryostat number
tpctpc number within the cryostat
planeplane number within the TPC
wirewire number within the plane
xyzStart(output) an array with the start coordinate
xyzEnd(output) an array with the end coordinate
Exceptions
cet::exceptionwire not present

The starting point is the wire end with lower z coordinate.

Deprecated:
use the wire ID interface instead (but note that it does not sort the ends)

Definition at line 3856 of file GeometryCore.h.

3860  { WireEndPoints(geo::WireID(cstat, tpc, plane, wire), xyzStart, xyzEnd); }
void WireEndPoints(geo::WireID const &wireid, double *xyzStart, double *xyzEnd) const
Fills two arrays with the coordinates of the wire end points.
template<typename Point >
Segment<Point> geo::GeometryCore::WireEndPoints ( geo::WireID const &  wireID) const

Returns a segment whose ends are the wire end points.

Parameters
wireidID of the wire
Returns
a segment whose ends are the wire end points
Exceptions
cet::exceptionwire not present

The start and end are assigned as returned from the geo::WireGeo object. The rules for this assignment are documented in that class.

Deprecated:
use the wire ID interface instead (but note that it does not sort the ends)
Segment<DefaultPoint_t> geo::GeometryCore::WireEndPoints ( geo::WireID const &  wireID) const
inline

Definition at line 3877 of file GeometryCore.h.

3878  { return WireEndPoints<DefaultPoint_t>(wireID); }
template<typename Point >
geo::GeometryCore::Segment<Point> geo::GeometryCore::WireEndPoints ( geo::WireID const &  wireid) const

Definition at line 5694 of file GeometryCore.h.

5695 {
5696  geo::WireGeo const& wire = Wire(wireid);
5697  return { wire.GetStart<Point>(), wire.GetEnd<Point>() };
5698 } // geo::GeometryCore::WireEndPoints(WireID)
void GetStart(double *xyz) const
Definition: WireGeo.h:157
Geometry description of a TPC wireThe wire is a single straight segment on a wire plane...
Definition: WireGeo.h:65
WireGeo const & Wire(geo::WireID const &wireid) const
Returns the specified wire.
void GetEnd(double *xyz) const
Definition: WireGeo.h:163
bool geo::GeometryCore::WireIDIntersectionCheck ( const geo::WireID wid1,
const geo::WireID wid2 
) const
private

Wire ID check for WireIDsIntersect methods.

Definition at line 1884 of file GeometryCore.cxx.

1885  {
1886  if (wid1.asTPCID() != wid2) {
1887  mf::LogError("WireIDIntersectionCheck")
1888  << "Comparing two wires on different TPCs: return failure.";
1889  return false;
1890  }
1891  if (wid1.Plane == wid2.Plane) {
1892  mf::LogError("WireIDIntersectionCheck")
1893  << "Comparing two wires in the same plane: return failure";
1894  return false;
1895  }
1896  if (!HasWire(wid1)) {
1897  mf::LogError("WireIDIntersectionCheck")
1898  << "1st wire " << wid1 << " does not exist (max wire number: "
1899  << Nwires(wid1.planeID()) << ")";
1900  return false;
1901  }
1902  if (!HasWire(wid2)) {
1903  mf::LogError("WireIDIntersectionCheck")
1904  << "2nd wire " << wid2 << " does not exist (max wire number: "
1905  << Nwires(wid2.planeID()) << ")";
1906  return false;
1907  }
1908  return true;
1909  } // GeometryCore::WireIDIntersectionCheck()
MaybeLogger_< ELseverityLevel::ELsev_error, false > LogError
unsigned int Nwires(unsigned int p, unsigned int tpc=0, unsigned int cstat=0) const
Returns the total number of wires in the specified plane.
PlaneID_t Plane
Index of the plane within its TPC.
Definition: geo_types.h:493
constexpr TPCID const & asTPCID() const
Conversion to TPCID (for convenience of notation).
Definition: geo_types.h:446
constexpr PlaneID const & planeID() const
Definition: geo_types.h:638
bool HasWire(geo::WireID const &wireid) const
Returns whether we have the specified wire.
bool geo::GeometryCore::WireIDsIntersect ( WireID const &  wid1,
WireID const &  wid2,
geo::Point_t intersection 
) const

Computes the intersection between two wires.

Parameters
wid1ID of the first wire
wid2ID of the other wire
[out]intersectionthe intersection point (global coordinates)
Returns
whether an intersection was found inside the TPC the wires belong
See also
geo::WiresIntersection(), geo::LineClosestPoint()

The wires identified by wid1 and wid2 are intersected, and the 3D intersection point is written into the intersection parameter. The "intersection" point is actually the point belonging to the first wire (wid2) which is the closest (in Euclidean 3D metric) to the second wire.

The intersection is computed only if the wires belong to different planes of the same TPC. If that is not the case (i.e. they belong to different TPC or cryostat, or if they belong to the same plane), false is returned and intersection is set with all components to infinity (std::numeric_limits<>::infinity()).

When the intersection is computed, it is always stored in the intersection output parameter. Return value is true if this intersection lies within the physical boundaries first wire, while it is instead false if it lies on the extrapolation of the wire direction, but not within the wire physical extension.

To test that the result is not infinity (nor NaN), use geo::vect::isfinite(intersection) etc.

Note
If geo::WireGeo objects are already available, using instead the free function geo::WiresIntersection() or the method geo::WireGeo::IntersectionWith() is faster (and recommended). For purely geometric intersection, geo::LineClosestPoint() is also available.
bool geo::GeometryCore::WireIDsIntersect ( WireID const &  wid1,
WireID const &  wid2,
TVector3 &  intersection 
) const
bool geo::GeometryCore::WireIDsIntersect ( WireID const &  wid1,
WireID const &  wid2,
WireIDIntersection widIntersect 
) const

Computes the intersection between two wires.

Parameters
wid1ID of the first wire
wid2ID of the other wire
widIntersect(output) the coordinate of the intersection point
Returns
whether an intersection was found within the TPC

The "intersection" refers to the projection of the wires into the same $ x = 0 $ plane. Wires are assumed to have at most one intersection. If wires are parallel, widIntersect will have the two components set to infinity (std::numeric_limits<>::infinity()) and the TPC number set to invalid (geo::TPCID::InvalidID). Also, false is returned. If the intersection is outside the TPC, false is also returned, but the widIntersect will contain the coordinates of that intersection. The TPC number is still set to invalid, although the intersection might belong to a valid TPC somewhere else.

Deprecated:
This method uses arbitrary assumptions and should not be used. Use the interface returning a full vector instead.
WireGeo const& geo::GeometryCore::WireIDToWireGeo ( geo::WireID const &  wireid) const
inline

Definition at line 3421 of file GeometryCore.h.

3422  { return Wire(wireid); }
WireGeo const & Wire(geo::WireID const &wireid) const
Returns the specified wire.
geo::Length_t geo::GeometryCore::WirePitch ( geo::PlaneID const &  planeid) const

Returns the distance between two consecutive wires.

Parameters
pplane number within the TPC
tpctpc number within the cryostat
cstatcryostat number
Returns
the distance between the two wires
Note
The current geometry assumptions imply that wire pitch is constant between all wires on the same wire plane. This is an assumption non-trivial to remove.
Todo:

add a version with wire IDs

deprecate this function

document what will happen (in the future methods) with wires on different planes

Definition at line 824 of file GeometryCore.cxx.

825  {
826  return Plane(planeid).WirePitch();
827  }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
double WirePitch() const
Return the wire pitch (in centimeters). It is assumed constant.
Definition: PlaneGeo.h:411
geo::Length_t geo::GeometryCore::WirePitch ( unsigned int  plane = 0,
unsigned int  tpc = 0,
unsigned int  cstat = 0 
) const
inline

Definition at line 3763 of file GeometryCore.h.

3766  { return WirePitch(geo::PlaneID(cstat, tpc, plane)); }
The data type to uniquely identify a Plane.
Definition: geo_types.h:472
geo::Length_t WirePitch(geo::PlaneID const &planeid) const
Returns the distance between two consecutive wires.
geo::Length_t geo::GeometryCore::WirePitch ( geo::View_t  view) const

Returns the distance between two wires in the specified view.

Parameters
w1index of the first wire
w2index of the second wire
pplane number within the TPC
tpctpc number within the cryostat
cstatcryostat number
Returns
the distance between the two wires

This method assumes that all the wires on all the planes on the specified view of all TPCs have the same pitch.

Definition at line 832 of file GeometryCore.cxx.

833  {
834  // look in cryostat 0, tpc 0 to find the plane with the
835  // specified view
836  return TPC({ 0, 0 }).Plane(view).WirePitch();
837  }
PlaneGeo const & Plane(unsigned int const p, unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified wire.
TPCGeo const & TPC(unsigned int const tpc=0, unsigned int const cstat=0) const
Returns the specified TPC.
double WirePitch() const
Return the wire pitch (in centimeters). It is assumed constant.
Definition: PlaneGeo.h:411
readout::ROPID geo::GeometryCore::WirePlaneToROP ( geo::PlaneID const &  planeid) const

Returns the ID of the ROP planeid belongs to.

Parameters
planeidID of the wire plane
Returns
the ID of the ROP planeid belongs to

If planeid is an invalid ID, an invalid ROP ID is returned. If planeid is a valid ID (i.e. an ID whose isValid flag is set) that points to a non-existent wire plane, the result is undefined. Use HasPlaneID() to check if the wire plane actually exists.

Definition at line 1734 of file GeometryCore.cxx.

1735  {
1736  return fChannelMapAlg->WirePlaneToROP(planeid);
1737  } // GeometryCore::WirePlaneToROP()
std::unique_ptr< const geo::ChannelMapAlg > fChannelMapAlg
Object containing the channel to wire mapping.
WireGeo const* geo::GeometryCore::WirePtr ( geo::WireID const &  wireid) const
inline

Returns the specified wire.

Parameters
wireidwire ID
Returns
a constant pointer to the specified wire, or nullptr if none

The GetElementPtr() method is overloaded and its return depends on the type of ID.

Definition at line 3400 of file GeometryCore.h.

3401  {
3402  geo::PlaneGeo const* pPlane = PlanePtr(wireid);
3403  return pPlane? pPlane->WirePtr(wireid): nullptr;
3404  } // WirePtr()
geo::WirePtr WirePtr(unsigned int iwire) const
Returns the wire number iwire from this plane.
Definition: PlaneGeo.h:324
PlaneGeo const * PlanePtr(geo::PlaneID const &planeid) const
Returns the specified plane.
Geometry information for a single wire plane.The plane is represented in the geometry by a solid whic...
Definition: PlaneGeo.h:82
void geo::GeometryCore::WorldBox ( double *  xlo,
double *  xhi,
double *  ylo,
double *  yhi,
double *  zlo,
double *  zhi 
) const

Fills the arguments with the boundaries of the world.

Parameters
xlo(output) pointer to the lower x coordinate
xlo(output) pointer to the upper x coordinate
ylo(output) pointer to the lower y coordinate
ylo(output) pointer to the upper y coordinate
zlo(output) pointer to the lower z coordinate
zlo(output) pointer to the upper z coordinate
Exceptions
cet::exception("GeometryCore" category) if no world found
See also
GetWorldVolumeName()

This method fills the boundaries of the world volume (GetWorldVolumeName()).

If a pointer is null, its coordinate is skipped.

Deprecated:
Use the version without arguments instead.

Definition at line 926 of file GeometryCore.cxx.

929  {
930  geo::BoxBoundedGeo const box = WorldBox();
931  if (xlo) *xlo = box.MinX();
932  if (ylo) *ylo = box.MinY();
933  if (zlo) *zlo = box.MinZ();
934  if (xhi) *xhi = box.MaxX();
935  if (yhi) *yhi = box.MaxY();
936  if (zhi) *zhi = box.MaxZ();
937  }
double MinX() const
Returns the world x coordinate of the start of the box.
Definition: BoxBoundedGeo.h:88
double MaxX() const
Returns the world x coordinate of the end of the box.
Definition: BoxBoundedGeo.h:91
double MinZ() const
Returns the world z coordinate of the start of the box.
double MaxY() const
Returns the world y coordinate of the end of the box.
A base class aware of world box coordinatesAn object describing a simple shape can inherit from this ...
Definition: BoxBoundedGeo.h:33
double MaxZ() const
Returns the world z coordinate of the end of the box.
double MinY() const
Returns the world y coordinate of the start of the box.
geo::BoxBoundedGeo WorldBox() const
geo::BoxBoundedGeo geo::GeometryCore::WorldBox ( ) const

Returns a box with the extremes of the world volume (from shape axes).

See also
GetWorldVolumeName()

Definition at line 903 of file GeometryCore.cxx.

903  {
904 
905  TGeoVolume const* world = WorldVolume();
906  if(!world) {
907  throw cet::exception("GeometryCore")
908  << "no world volume '" << GetWorldVolumeName() << "'\n";
909  }
910  TGeoShape const* s = world->GetShape();
911  if(!s) {
912  throw cet::exception("GeometryCore")
913  << "world volume '" << GetWorldVolumeName() << "' is shapeless!!!\n";
914  }
915 
916  double x1, x2, y1, y2, z1, z2;
917  s->GetAxisRange(1, x1, x2);
918  s->GetAxisRange(2, y1, y2);
919  s->GetAxisRange(3, z1, z2);
920 
921  // geo::BoxBoundedGeo constructor will sort the coordinates as needed
922  return geo::BoxBoundedGeo{ x1, x2, y1, y2, z1, z2 };
923  } // GeometryCore::WorldBox()
const std::string GetWorldVolumeName() const
Return the name of the world volume (needed by Geant4 simulation)
TGeoVolume const * WorldVolume() const
Returns a pointer to the world volume.
A base class aware of world box coordinatesAn object describing a simple shape can inherit from this ...
Definition: BoxBoundedGeo.h:33
static QCString * s
Definition: config.cpp:1042
cet::coded_exception< error, detail::translate > exception
Definition: exception.h:33
TGeoVolume const * geo::GeometryCore::WorldVolume ( ) const

Returns a pointer to the world volume.

Definition at line 898 of file GeometryCore.cxx.

898  {
899  return gGeoManager->FindVolumeFast(GetWorldVolumeName().c_str());
900  }
const std::string GetWorldVolumeName() const
Return the name of the world volume (needed by Geant4 simulation)

Member Data Documentation

std::set<geo::View_t> geo::GeometryCore::allViews
private

All views in the detector.

Definition at line 5526 of file GeometryCore.h.

lar::util::RealComparisons< geo::Length_t > geo::GeometryCore::coordIs { 1e-8 }
static

Value of tolerance for equality comparisons.

Definition at line 1513 of file GeometryCore.h.

fhicl::ParameterSet geo::GeometryCore::fBuilderParameters
private

Configuration for the geometry builder (needed since builder is created after construction).

Definition at line 5521 of file GeometryCore.h.

std::unique_ptr<const geo::ChannelMapAlg> geo::GeometryCore::fChannelMapAlg
private

Object containing the channel to wire mapping.

Definition at line 5522 of file GeometryCore.h.

std::string geo::GeometryCore::fDetectorName
private

Name of the detector.

Definition at line 5512 of file GeometryCore.h.

std::string geo::GeometryCore::fGDMLfile
private

path to geometry file used for Geant4 simulation

Definition at line 5513 of file GeometryCore.h.

GeometryData_t geo::GeometryCore::fGeoData
private

The detector description data.

Definition at line 5509 of file GeometryCore.h.

double geo::GeometryCore::fMinWireZDist
private

Minimum distance in Z from a point in which to look for the closest wire

Definition at line 5515 of file GeometryCore.h.

double geo::GeometryCore::fPositionWiggle
private

accounting for rounding errors when testing positions

Definition at line 5517 of file GeometryCore.h.

std::string geo::GeometryCore::fROOTfile
private

path to geometry file for geometry in GeometryCore

Definition at line 5514 of file GeometryCore.h.

double geo::GeometryCore::fSurfaceY
private

The point where air meets earth for this detector.

Definition at line 5511 of file GeometryCore.h.

constexpr std::size_t geo::GeometryCore::MaxWireDepthInGDML = 20U
static

Wires must be found in GDML description within this number of nested volumes.

Definition at line 1510 of file GeometryCore.h.


The documentation for this class was generated from the following files: