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