GEMC  2.2
Geant4 Monte-Carlo Framework
rich_hitprocess.h
Go to the documentation of this file.
1 #ifndef RICH_HITPROCESS_H
2 #define RICH_HITPROCESS_H 1
3 
4 // gemc headers
5 #include "HitProcess.h"
6 
7 // Class definition
8 class rich_HitProcess : public HitProcess
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 rich_HitProcess;}
26 };
27 
28 #endif
static HitProcess * createHitClass()
vector< identifier > processID(vector< identifier >, G4Step *, detector)
map< string, double > integrateDgt(MHit *, int)
map< string, vector< int > > multiDgt(MHit *, int)
Definition: Hit.h:22