FairRoot/PandaRoot
Public Member Functions | Private Attributes | List of all members
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...
 

Private Attributes

TClonesArray * hitArrayTClones
 pointer to array with cluster data More...
 

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

Constructor & Destructor Documentation

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

100  {
101  hitArrayTClones = theArr;
102  //hitArrayVector = NULL;
103 }
TClonesArray * hitArrayTClones
pointer to array with cluster data
template<class hit_T , class recoHit_T >
GFRecoHitProducer< hit_T, recoHit_T >::~GFRecoHitProducer ( )
virtual

Definition at line 113 of file GFRecoHitProducer.h.

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

Member Function Documentation

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

References GFException::setFatal().

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

Member Data Documentation

template<class hit_T , class recoHit_T >
TClonesArray* GFRecoHitProducer< hit_T, recoHit_T >::hitArrayTClones
private

pointer to array with cluster data

Definition at line 83 of file GFRecoHitProducer.h.


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