PandaRoot
GFRecoHitProducer< hit_T, recoHit_T > Class Template Reference

Template class for a hit producer module. More...

#include <GFRecoHitProducer.h>

Inheritance diagram for GFRecoHitProducer< hit_T, recoHit_T >:
GFAbsRecoHitProducer

Public Member Functions

 GFRecoHitProducer (TClonesArray *)
 Constructor takes pointer to the cluster array. More...
 
virtual ~GFRecoHitProducer ()
 
virtual GFAbsRecoHitproduce (int index)
 Create a RecoHit from the cluster at position index in TClonesArray. More...
 
- Public Member Functions inherited from GFAbsRecoHitProducer
virtual ~GFAbsRecoHitProducer ()
 

Detailed Description

template<class hit_T, class recoHit_T>
class GFRecoHitProducer< hit_T, recoHit_T >

Template class for a hit producer module.

A GFRecoHitProducer module is used by RecoHitFactory to create RecoHits for one specific detector type.

It is assumed that each detector has as output of its digitization / clustering some sort of cluster class which stores all information that corresponds to a measured hit in that detector. The RecoHit producer converts this information into a class that can be handled by genfit. This class is realized as a RecoHit (a class inherting from GFAbsRecoHit).

In order to use the GFRecoHitProducer facility a RecoHit has to implement a constructor which takes as an argument a pointer to the cluster class. This constructor serves as the initializing constructor for the RecoHit.

The GFRecoHitProducer will fetch the cluster objects from a TClonesArray and use the initializing constructor to build the corresponding RecoHit.

Parameters
hit_ttemplate parameter specifying cluster class
recoHit_ttemplate parameter specifying recoHit

Definition at line 78 of file GFRecoHitProducer.h.

Constructor & Destructor Documentation

◆ GFRecoHitProducer()

template<class hit_T , class recoHit_T >
GFRecoHitProducer< hit_T, recoHit_T >::GFRecoHitProducer ( TClonesArray *  theArr)

Constructor takes pointer to the cluster array.

Definition at line 97 of file GFRecoHitProducer.h.

98 {
99  hitArrayTClones = theArr;
100  // hitArrayVector = nullptr;
101 }

◆ ~GFRecoHitProducer()

template<class hit_T , class recoHit_T >
GFRecoHitProducer< hit_T, recoHit_T >::~GFRecoHitProducer ( )
virtual

Definition at line 111 of file GFRecoHitProducer.h.

112 {
113  // we dont assume ownership over the hit arrays
114 }

Member Function Documentation

◆ produce()

template<class hit_T , class recoHit_T >
GFAbsRecoHit * GFRecoHitProducer< hit_T, recoHit_T >::produce ( int  index)
virtual

Create a RecoHit from the cluster at position index in TClonesArray.

Implements GFAbsRecoHitProducer.

Definition at line 117 of file GFRecoHitProducer.h.

References GFException::setFatal().

118 {
119  assert(hitArrayTClones != nullptr);
120  // assert(hitArrayTClones!=nullptr || hitArrayVector!=nullptr);//at least one exists
121  // assert(!(hitArrayTClones!=nullptr && hitArrayVector!=nullptr));//but not both
122  // if(hitArrayTClones!=nullptr){
123  // the ROOT guys really use 0 and not nullptr grrr...
124  if (hitArrayTClones->At(index) == 0) {
125  GFException e("In GFRecoHitProducer: index for hit in TClonesArray out of bounds", __LINE__, __FILE__);
126  e.setFatal();
127  throw e;
128  }
129  return (new recoHit_T((hit_T *)hitArrayTClones->At(index)));
130  //}
131  // else{//after assertions this is save: the hitArrayVector is good
132  // if(index >= hitArrayVector->size()) {
133  // GFException e("In GFRecoHitProducer: index for hit in std::vector out of bounds",__LINE__,__FILE__);
134  // e.setFatal();
135  // throw e;
136  // }
137  // return ( new recoHit_T( (hit_T*) hitArrayVector->at(index) ) );
138  //}
139 }
Exception class for error handling in GENFIT (provides storage for diagnostic information) ...
Definition: GFException.h:44

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