GEMC  2.3
Geant4 Monte-Carlo Framework
cormo_hitprocess.h
Go to the documentation of this file.
1 #ifndef cormo_HITPROCESS_H
2 #define cormo_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
25  static HitProcess *createHitClass() {return new cormo_HitProcess;}
26 
27  double BirksAttenuation(double,double,int,double);
28  double BirksAttenuation2(double,double,int,double);
29 };
30 
31 #endif
vector< identifier > processID(vector< identifier >, G4Step *, detector)
map< string, double > integrateDgt(MHit *, int)
static HitProcess * createHitClass()
map< string, vector< int > > multiDgt(MHit *, int)
Definition: Hit.h:22
double BirksAttenuation2(double, double, int, double)
double BirksAttenuation(double, double, int, double)