GEMC  2.2
Geant4 Monte-Carlo Framework
FMT_hitprocess.h
Go to the documentation of this file.
1 #ifndef FMT_HITPROCESS_H
2 #define FMT_HITPROCESS_H 1
3 
4 // gemc headers
5 #include "HitProcess.h"
6 
7 // Class definition
8 
31 
32 class FMT_HitProcess : public HitProcess
33 {
34  public:
35 
37 
38  // - integrateDgt: returns digitized information integrated over the hit
39  map<string, double> integrateDgt(MHit*, int);
40 
41  // - multiDgt: returns multiple digitized information / hit
42  map< string, vector <int> > multiDgt(MHit*, int);
43 
44  // The pure virtual method processID returns a (new) identifier
45  // containing hit sharing information
46  vector<identifier> processID(vector<identifier>, G4Step*, detector);
47 
48  // creates the HitProcess
49  static HitProcess *createHitClass() {return new FMT_HitProcess;}
50 };
51 
52 #endif
vector< identifier > processID(vector< identifier >, G4Step *, detector)
map< string, double > integrateDgt(MHit *, int)
static HitProcess * createHitClass()
Definition: Hit.h:22
map< string, vector< int > > multiDgt(MHit *, int)