LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
readout Namespace Reference

Namespaces

 details
 
 fhicl
 FHiCL objects representing geometry classes as configuration parameters.
 

Classes

class  ROPDataContainer
 Container with one element per readout plane. More...
 
struct  ROPID
 Class identifying a set of planes sharing readout channels. More...
 
class  ROPIDmapper
 Mapping for readout plane identifiers. More...
 
class  TPCsetDataContainer
 Container with one element per readout TPC set. More...
 
struct  TPCsetID
 Class identifying a set of TPC sharing readout channels. More...
 
class  TPCsetIDmapper
 Mapping for TPC set identifiers. More...
 

Typedefs

using CryostatID = geo::CryostatID
 

Functions

std::ostream & operator<< (std::ostream &out, TPCsetID const &sid)
 Generic output of TPCsetID to stream. More...
 
std::ostream & operator<< (std::ostream &out, ROPID const &rid)
 

Typedef Documentation

Definition at line 45 of file readout_types.h.

Function Documentation

std::ostream& readout::operator<< ( std::ostream &  out,
TPCsetID const &  sid 
)
inline

Generic output of TPCsetID to stream.

Definition at line 178 of file readout_types.h.

References readout::TPCsetID::asCryostatID(), and readout::TPCsetID::TPCset.

179  {
180  out << sid.asCryostatID() << " S:" << sid.TPCset;
181  return out;
182  }
std::ostream& readout::operator<< ( std::ostream &  out,
ROPID const &  rid 
)
inline

Definition at line 184 of file readout_types.h.

References readout::ROPID::asTPCsetID(), and readout::ROPID::ROP.

185  {
186  out << rid.asTPCsetID() << " R:" << rid.ROP;
187  return out;
188  }