GEMC  2.2
Geant4 Monte-Carlo Framework
ftof_hitprocess.h
Go to the documentation of this file.
1 #ifndef FTOF_HITPROCESS_H
2 #define FTOF_HITPROCESS_H 1
3 
4 // gemc headers
5 #include "HitProcess.h"
6 
7 // Class definition
12 
14 {
15  public:
16 
18 
19  // - integrateDgt: returns digitized information integrated over the hit
20  map<string, double> integrateDgt(MHit*, int);
21 
22  // - multiDgt: returns multiple digitized information / hit
23  map< string, vector <int> > multiDgt(MHit*, int);
24 
25  // The pure virtual method processID returns a (new) identifier
26  // containing hit sharing information
27  vector<identifier> processID(vector<identifier>, G4Step*, detector);
28 
29  // creates the HitProcess
30  static HitProcess *createHitClass() {return new ftof_HitProcess;}
31 };
32 
33 #endif
vector< identifier > processID(vector< identifier >, G4Step *, detector)
map< string, double > integrateDgt(MHit *, int)
map< string, vector< int > > multiDgt(MHit *, int)
Definition: Hit.h:22
static HitProcess * createHitClass()