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