LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
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 GFAbsRecoHit * produce (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 78 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 98 of file GFRecoHitProducer.h.

98  {
99  hitArrayTClones = theArr;
100  //hitArrayVector = NULL;
101 }
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 111 of file GFRecoHitProducer.h.

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

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

References GFException::setFatal().

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

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


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