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 90 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 109 of file GFRecoHitProducer.h.

110 {
111  hitArrayTClones = theArr;
112  // hitArrayVector = nullptr;
113 }

◆ ~GFRecoHitProducer()

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

Definition at line 123 of file GFRecoHitProducer.h.

124 {
125  // we dont assume ownership over the hit arrays
126 }

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 129 of file GFRecoHitProducer.h.

References GFException::setFatal().

130 {
131  assert(hitArrayTClones != nullptr);
132  // assert(hitArrayTClones!=nullptr || hitArrayVector!=nullptr);//at least one exists
133  // assert(!(hitArrayTClones!=nullptr && hitArrayVector!=nullptr));//but not both
134  // if(hitArrayTClones!=nullptr){
135  // the ROOT guys really use 0 and not nullptr grrr...
136  if (hitArrayTClones->At(index) == 0) {
137  GFException e("In GFRecoHitProducer: index for hit in TClonesArray out of bounds", __LINE__, __FILE__);
138  e.setFatal();
139  throw e;
140  }
141  return (new recoHit_T((hit_T *)hitArrayTClones->At(index)));
142  //}
143  // else{//after assertions this is save: the hitArrayVector is good
144  // if(index >= hitArrayVector->size()) {
145  // GFException e("In GFRecoHitProducer: index for hit in std::vector out of bounds",__LINE__,__FILE__);
146  // e.setFatal();
147  // throw e;
148  // }
149  // return ( new recoHit_T( (hit_T*) hitArrayVector->at(index) ) );
150  //}
151 }
Exception class for error handling in GENFIT (provides storage for diagnostic information) ...
Definition: GFException.h:56

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