Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LXePMTSD.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: LXePMTSD.hh 73915 2013-09-17 07:32:26Z gcosmo $
27 //
28 /// \file optical/LXe/include/LXePMTSD.hh
29 /// \brief Definition of the LXePMTSD class
30 //
31 //
32 #ifndef LXePMTSD_h
33 #define LXePMTSD_h 1
34 
35 #include "G4DataVector.hh"
36 #include "G4VSensitiveDetector.hh"
37 #include "LXePMTHit.hh"
38 
39 #include <vector>
40 
41 class G4Step;
42 class G4HCofThisEvent;
43 
45 {
46 
47  public:
48 
50  virtual ~LXePMTSD();
51 
52  virtual void Initialize(G4HCofThisEvent* );
53  virtual G4bool ProcessHits(G4Step* aStep, G4TouchableHistory* );
54 
55  //A version of processHits that keeps aStep constant
58  virtual void EndOfEvent(G4HCofThisEvent* );
59  virtual void clear();
60  void DrawAll();
61  void PrintAll();
62 
63  //Initialize the arrays to store pmt possitions
64  inline void InitPMTs(G4int nPMTs){
65  if(fPMTPositionsX)delete fPMTPositionsX;
66  if(fPMTPositionsY)delete fPMTPositionsY;
67  if(fPMTPositionsZ)delete fPMTPositionsZ;
68  fPMTPositionsX=new G4DataVector(nPMTs);
69  fPMTPositionsY=new G4DataVector(nPMTs);
70  fPMTPositionsZ=new G4DataVector(nPMTs);
71  }
72 
73  //Store a pmt position
74  void SetPmtPositions(const std::vector<G4ThreeVector>& positions);
75 
76  private:
77 
78  LXePMTHitsCollection* fPMTHitCollection;
79 
80  G4DataVector* fPMTPositionsX;
81  G4DataVector* fPMTPositionsY;
82  G4DataVector* fPMTPositionsZ;
83 };
84 
85 #endif
virtual void clear()
Definition: LXePMTSD.cc:152
virtual void Initialize(G4HCofThisEvent *)
Definition: LXePMTSD.cc:73
virtual void EndOfEvent(G4HCofThisEvent *)
Definition: LXePMTSD.cc:148
const XML_Char * name
G4bool ProcessHits_constStep(const G4Step *, G4TouchableHistory *)
Definition: LXePMTSD.cc:96
int G4int
Definition: G4Types.hh:78
virtual G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *)
Definition: LXePMTSD.cc:86
void DrawAll()
Definition: LXePMTSD.cc:156
bool G4bool
Definition: G4Types.hh:79
Definition of the LXePMTHit class.
Definition: G4Step.hh:76
void SetPmtPositions(const std::vector< G4ThreeVector > &positions)
Definition: LXePMTSD.cc:62
virtual ~LXePMTSD()
Definition: LXePMTSD.cc:58
void PrintAll()
Definition: LXePMTSD.cc:160
void InitPMTs(G4int nPMTs)
Definition: LXePMTSD.hh:64
LXePMTSD(G4String name)
Definition: LXePMTSD.cc:49