Jpp  18.2.0-rc.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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
JDetector
JReference_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 to the logical address of the module (JModuleAddress) in the detector data structure.

Note that the required memory is determined by the range covered by the module identifiers.

Definition at line 36 of file JModuleRouter.hh.

Member Typedef Documentation

Definition at line 40 of file JModuleRouter.hh.

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

Definition at line 44 of file JModuleRouter.hh.

Constructor & Destructor Documentation

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

Constructor.

Parameters
detectordetector

Definition at line 52 of file JModuleRouter.hh.

52  :
53  JReference_t(detector),
55  {
56  for (const_iterator module = detector.begin(); module != detector.end(); ++module) {
57  router.put(module->getID(), JModuleAddress(std::distance(detector.begin(), module)));
58  }
59  }
std::vector< T >::difference_type distance(typename std::vector< T >::const_iterator first, typename PhysicsEvent::const_iterator< T > second)
Specialisation of STL distance.
JTOOLS::JRouter< JModuleAddress > router
JDetector::const_iterator const_iterator
Address of module in detector data structure.
JReference< const JDetector > JReference_t

Member Function Documentation

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

Get module router.

Returns
module router

Definition at line 67 of file JModuleRouter.hh.

68  {
69  return static_cast<const JModuleRouter&>(*this);
70  }
Router for direct addressing of module data in detector data structure.
const JModuleAddress& JDETECTOR::JModuleRouter::getAddress ( const JObjectID id) const
inline

Get address of module.

Parameters
idmodule identifier
Returns
address

Definition at line 79 of file JModuleRouter.hh.

80  {
81  return router.get(id.getID());
82  }
JTOOLS::JRouter< JModuleAddress > router
const JModule& JDETECTOR::JModuleRouter::getModule ( const JObjectID id) const
inline

Get module parameters.

Parameters
idmodule identifier
Returns
module parameters

Definition at line 91 of file JModuleRouter.hh.

92  {
93  return getReference().getModule(this->getAddress(id));
94  }
const JClass_t & getReference() const
Get reference to object.
Definition: JReference.hh:38
const JModuleAddress & getAddress(const JObjectID &id) const
Get address of module.
bool JDETECTOR::JModuleRouter::hasModule ( const JObjectID id) const
inline

Has module.

Parameters
idmodule identifier
Returns
true if module present; else false

Definition at line 103 of file JModuleRouter.hh.

104  {
105  return router.has(id.getID());
106  }
JTOOLS::JRouter< JModuleAddress > router
const int JDETECTOR::JModuleRouter::getIndex ( const JObjectID id) const
inline

Get index of module.

Parameters
idmodule identifier
Returns
index

Definition at line 115 of file JModuleRouter.hh.

116  {
117  return getAddress(id).first;
118  }
int first
index of module in detector data structure
const JModuleAddress & getAddress(const JObjectID &id) const
Get address of module.
bool JDETECTOR::JModuleRouter::hasPMT ( const JPMTIdentifier id) const
inline

Has PMT.

Parameters
idPMT identifier
Returns
true if PMT present; else false

Definition at line 127 of file JModuleRouter.hh.

128  {
129  return hasModule(id.getID()) && id.getPMTAddress() >= 0 && id.getPMTAddress() < (int) getModule(id.getID()).size();
130  }
const JModule & getModule(const JObjectID &id) const
Get module parameters.
bool hasModule(const JObjectID &id) const
Has module.
const JPMT& JDETECTOR::JModuleRouter::getPMT ( const JPMTIdentifier id) const
inline

Get PMT parameters.

Parameters
idPMT identifier
Returns
PMT parameters

Definition at line 139 of file JModuleRouter.hh.

140  {
141  return getModule(id.getID()).getPMT(id.getPMTAddress());
142  }
const JModule & getModule(const JObjectID &id) const
Get module parameters.
const JPMT & getPMT(const int index) const
Get PMT.
Definition: JModule.hh:173
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 151 of file JModuleRouter.hh.

152  {
153  return JUTMPosition(getModule(id).getPosition() + getReference().getPosition());
154  }
const JModule & getModule(const JObjectID &id) const
Get module parameters.
JPosition3D getPosition(const JModule &first, const JModule &second)
Get position to go from first to second module.
const JClass_t & getReference() const
Get reference to object.
Definition: JReference.hh:38
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  }
JClass_t & __object
Definition: JReference.hh:110
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  }
JClass_t & __object
Definition: JReference.hh:110
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  }
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  }
JClass_t & __object
Definition: JReference.hh:110
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  }
JClass_t & __object
Definition: JReference.hh:110
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  }
JClass_t & __object
Definition: JReference.hh:110
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  }
JClass_t & __object
Definition: JReference.hh:110

Member Data Documentation

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

Definition at line 157 of file JModuleRouter.hh.

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: