aboutsummaryrefslogtreecommitdiffstats
path: root/include/G4BeamTestSiSD.h
blob: 20992c0d4e4581acb4a286aad1b638be1a31334a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef G4BeamTestSiSD_h
#define G4BeamTestSiSD_h 1

#include "G4VSensitiveDetector.hh"

#include "G4BeamTestSiHit.h"

#include <vector>

class G4Step;
class G4HCofThisEvent;

//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......

/// B2Tracker sensitive detector class
///
/// The hits are accounted in hits in ProcessHits() function which is called
/// by Geant4 kernel at each step. A hit is created with each step with non zero 
/// energy deposit.

class G4BeamTestSiSD : public G4VSensitiveDetector
{
public:
  G4BeamTestSiSD(const G4String& name,
                const G4String& hitsCollectionName);
  virtual ~G4BeamTestSiSD();
  
  // methods from base class
  virtual void   Initialize(G4HCofThisEvent* hitCollection);
  virtual G4bool ProcessHits(G4Step* step, G4TouchableHistory* history);
  virtual void   EndOfEvent(G4HCofThisEvent* hitCollection);


private:
  G4BeamTestSiHitsCollection* fHitsCollection;

};

//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......

#endif