Jpp
Public Types | Public Member Functions | Protected Attributes | Private Types | Private Attributes | List of all members
JDETECTOR::JModuleRouter Class Reference

Router for direct addressing of module data in detector data structure. More...

#include <JModuleRouter.hh>

Inheritance diagram for JDETECTOR::JModuleRouter:
JLANG::JReference< JClass_t > JDETECTOR::JDAQHitRouter JDETECTOR::JModuleMapper< JAttributes_t > JDETECTOR::JModuleMapper< JAttributes >

Public Types

typedef JDetector::const_iterator const_iterator
 

Public Member Functions

 JModuleRouter (const JDetector &detector)
 Constructor. More...
 
const JModuleRoutergetModuleRouter () const
 Get module router. More...
 
const JModuleAddressgetAddress (const JObjectID &id) const
 Get address of module. More...
 
const JModulegetModule (const JObjectID &id) const
 Get module parameters. More...
 
bool hasModule (const JObjectID &id) const
 Has module. More...
 
const int getIndex (const JObjectID &id) const
 Get index of module. More...
 
bool hasPMT (const JPMTIdentifier &id) const
 Has PMT. More...
 
const JPMTgetPMT (const JPMTIdentifier &id) const
 Get PMT parameters. More...
 
JUTMPosition getUTMPosition (const JObjectID &id) const
 Get UTM position of given module identifier. More...
 
const JClass_t & getReference () const
 Get reference to object. More...
 
JClass_t & getReference ()
 Get reference to object. More...
 
bool is_valid () const
 Check validity of reference. More...
 
const JClass_t * operator-> () const
 Smart pointer. More...
 
JClass_t * operator-> ()
 Smart pointer. More...
 
const JClass_t & operator* () const
 Dereference operator. More...
 
JClass_t & operator* ()
 Dereference operator. More...
 

Protected Attributes

JClass_t & __object
 

Private Types

typedef JReference< const JDetectorJReference_t
 

Private Attributes

JTOOLS::JRouter< JModuleAddressrouter
 

Detailed Description

Router for direct addressing of module data in detector data structure.

This router can be used to directly map the module identifier (JModuleIdentifier) to the logical address of the module (JModuleAddress) in the detector data structure.

Definition at line 34 of file JModuleRouter.hh.

Member Typedef Documentation

◆ JReference_t

Definition at line 38 of file JModuleRouter.hh.

◆ const_iterator

typedef JDetector::const_iterator JDETECTOR::JModuleRouter::const_iterator

Definition at line 42 of file JModuleRouter.hh.

Constructor & Destructor Documentation

◆ JModuleRouter()

JDETECTOR::JModuleRouter::JModuleRouter ( const JDetector detector)
inline

Constructor.

Parameters
detectordetector

Definition at line 50 of file JModuleRouter.hh.

50  :
51  JReference_t(detector),
53  {
54  for (const_iterator module = detector.begin(); module != detector.end(); ++module) {
55  router.put(module->getID(), JModuleAddress(std::distance(detector.begin(), module)));
56  }
57  }

Member Function Documentation

◆ getModuleRouter()

const JModuleRouter& JDETECTOR::JModuleRouter::getModuleRouter ( ) const
inline

Get module router.

Returns
module router

Definition at line 65 of file JModuleRouter.hh.

66  {
67  return static_cast<const JModuleRouter&>(*this);
68  }

◆ getAddress()

const JModuleAddress& JDETECTOR::JModuleRouter::getAddress ( const JObjectID id) const
inline

Get address of module.

Parameters
idmodule identifier
Returns
address

Definition at line 77 of file JModuleRouter.hh.

78  {
79  return router.get(id.getID());
80  }

◆ getModule()

const JModule& JDETECTOR::JModuleRouter::getModule ( const JObjectID id) const
inline

Get module parameters.

Parameters
idmodule identifier
Returns
module parameters

Definition at line 89 of file JModuleRouter.hh.

90  {
91  return getReference().getModule(this->getAddress(id));
92  }

◆ hasModule()

bool JDETECTOR::JModuleRouter::hasModule ( const JObjectID id) const
inline

Has module.

Parameters
idmodule identifier
Returns
true if module present; else false

Definition at line 101 of file JModuleRouter.hh.

102  {
103  return router.has(id.getID());
104  }

◆ getIndex()

const int JDETECTOR::JModuleRouter::getIndex ( const JObjectID id) const
inline

Get index of module.

Parameters
idmodule identifier
Returns
index

Definition at line 113 of file JModuleRouter.hh.

114  {
115  return getAddress(id).first;
116  }

◆ hasPMT()

bool JDETECTOR::JModuleRouter::hasPMT ( const JPMTIdentifier id) const
inline

Has PMT.

Parameters
idPMT identifier
Returns
true if PMT present; else false

Definition at line 125 of file JModuleRouter.hh.

126  {
127  return hasModule(id.getID()) && id.getPMTAddress() >= 0 && id.getPMTAddress() < (int) getModule(id.getID()).size();
128  }

◆ getPMT()

const JPMT& JDETECTOR::JModuleRouter::getPMT ( const JPMTIdentifier id) const
inline

Get PMT parameters.

Parameters
idPMT identifier
Returns
PMT parameters

Definition at line 137 of file JModuleRouter.hh.

138  {
139  return getModule(id.getID()).getPMT(id.getPMTAddress());
140  }

◆ getUTMPosition()

JUTMPosition JDETECTOR::JModuleRouter::getUTMPosition ( const JObjectID id) const
inline

Get UTM position of given module identifier.

Parameters
idmodule identifier
Returns
UTM position

Definition at line 149 of file JModuleRouter.hh.

150  {
151  return JUTMPosition(getModule(id).getPosition() + getReference().getPosition());
152  }

◆ getReference() [1/2]

template<class JClass_t>
const JClass_t& JLANG::JReference< JClass_t >::getReference ( ) const
inlineinherited

Get reference to object.

Returns
reference to object

Definition at line 38 of file JReference.hh.

39  {
40  return __object;
41  }

◆ getReference() [2/2]

template<class JClass_t>
JClass_t& JLANG::JReference< JClass_t >::getReference ( )
inlineinherited

Get reference to object.

Returns
reference to object

Definition at line 49 of file JReference.hh.

50  {
51  return __object;
52  }

◆ is_valid()

template<class JClass_t>
bool JLANG::JReference< JClass_t >::is_valid ( ) const
inlineinherited

Check validity of reference.

Returns
true

Definition at line 60 of file JReference.hh.

61  {
62  return true;
63  }

◆ operator->() [1/2]

template<class JClass_t>
const JClass_t* JLANG::JReference< JClass_t >::operator-> ( ) const
inlineinherited

Smart pointer.

Returns
pointer to object

Definition at line 71 of file JReference.hh.

72  {
73  return &__object;
74  }

◆ operator->() [2/2]

template<class JClass_t>
JClass_t* JLANG::JReference< JClass_t >::operator-> ( )
inlineinherited

Smart pointer.

Returns
pointer to object

Definition at line 82 of file JReference.hh.

83  {
84  return &__object;
85  }

◆ operator*() [1/2]

template<class JClass_t>
const JClass_t& JLANG::JReference< JClass_t >::operator* ( ) const
inlineinherited

Dereference operator.

Returns
reference to object

Definition at line 93 of file JReference.hh.

94  {
95  return __object;
96  }

◆ operator*() [2/2]

template<class JClass_t>
JClass_t& JLANG::JReference< JClass_t >::operator* ( )
inlineinherited

Dereference operator.

Returns
reference to object

Definition at line 104 of file JReference.hh.

105  {
106  return __object;
107  }

Member Data Documentation

◆ router

JTOOLS::JRouter<JModuleAddress> JDETECTOR::JModuleRouter::router
private

Definition at line 155 of file JModuleRouter.hh.

◆ __object

template<class JClass_t>
JClass_t& JLANG::JReference< JClass_t >::__object
protectedinherited

Definition at line 110 of file JReference.hh.


The documentation for this class was generated from the following file:
JDETECTOR::JModuleAddress::first
int first
index of module in detector data structure
Definition: JModuleAddress.hh:90
JDETECTOR::JModuleRouter::getModule
const JModule & getModule(const JObjectID &id) const
Get module parameters.
Definition: JModuleRouter.hh:89
JLANG::JReference::__object
JClass_t & __object
Definition: JReference.hh:110
distance
std::vector< T >::difference_type distance(typename std::vector< T >::const_iterator first, typename PhysicsEvent::const_iterator< T > second)
Specialisation of STL distance.
Definition: PhysicsEvent.hh:434
JDETECTOR::JModuleRouter::JReference_t
JReference< const JDetector > JReference_t
Definition: JModuleRouter.hh:38
JDETECTOR::JModule::getPMT
const JPMT & getPMT(const int index) const
Get PMT.
Definition: JModule.hh:173
JLANG::JReference::getReference
const JClass_t & getReference() const
Get reference to object.
Definition: JReference.hh:38
JDETECTOR::JModuleAddress
Address of module in detector data structure.
Definition: JModuleAddress.hh:30
JDETECTOR::JModuleRouter::getAddress
const JModuleAddress & getAddress(const JObjectID &id) const
Get address of module.
Definition: JModuleRouter.hh:77
JDETECTOR::JModuleRouter::hasModule
bool hasModule(const JObjectID &id) const
Has module.
Definition: JModuleRouter.hh:101
JDETECTOR::getPosition
JPosition3D getPosition(const JModule &first, const JModule &second)
Get position to go from first to second module.
Definition: JDetectorToolkit.hh:853
JDETECTOR::JModuleRouter::const_iterator
JDetector::const_iterator const_iterator
Definition: JModuleRouter.hh:42
JDETECTOR::JModuleRouter::router
JTOOLS::JRouter< JModuleAddress > router
Definition: JModuleRouter.hh:155