Geant4 Cross Reference |
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 // 27 28 // ******************************************************************** 29 // 30 // CaTS (Calorimetry and Tracking Simulation) 31 // 32 // Authors : Hans Wenzel 33 // Soon Yung Jun 34 // (Fermi National Accelerator Laboratory) 35 // 36 // History 37 // October 18th, 2021 : first implementation 38 // 39 // ******************************************************************** 40 // 41 /// \file lArTPCSD.hh 42 /// \brief Definition of the CaTS::lArTPCSD class 43 44 #pragma once 45 46 #include "lArTPCHit.hh" 47 #include "G4VSensitiveDetector.hh" 48 #include "G4ScintillationTrackInformation.hh" 49 #include <G4MaterialPropertyVector.hh> 50 #include <G4String.hh> 51 #include <G4Types.hh> 52 class G4Material; 53 class G4PhysicsTable; 54 class G4TouchableHistory; 55 class G4Step; 56 class G4HCofThisEvent; 57 class G4MaterialPropertiesTable; 58 class G4PhysicsOrderedFreeVector; 59 60 class lArTPCSD : public G4VSensitiveDetector 61 { 62 public: 63 lArTPCSD(G4String name); 64 virtual ~lArTPCSD() = default; 65 void Initialize(G4HCofThisEvent* hitCollection) final; 66 G4bool ProcessHits(G4Step* step, G4TouchableHistory* history) final; 67 void EndOfEvent(G4HCofThisEvent* hitCollection) final; 68 69 private: 70 G4int materialIndex; 71 const G4Material* aMaterial; 72 G4MaterialPropertiesTable* aMaterialPropertiesTable; 73 // 74 // properties related to Scintillation 75 // 76 G4MaterialPropertyVector* Fast_Intensity{ nullptr }; 77 G4MaterialPropertyVector* Slow_Intensity{ nullptr }; 78 G4double YieldRatio{ 0 }; // slowerRatio, 79 G4double FastTimeConstant{ 0 }; // TimeConstant, 80 G4double SlowTimeConstant{ 0 }; // slowerTimeConstant, 81 G4ScintillationType ScintillationType; 82 // 83 // properties related to Cerenkov 84 // 85 G4MaterialPropertyVector* Rindex{ nullptr }; 86 G4PhysicsOrderedFreeVector* CerenkovAngleIntegrals{ nullptr }; 87 const G4PhysicsTable* thePhysicsTable{ 0 }; 88 G4double Pmin{ 0 }; 89 G4double Pmax{ 0 }; 90 G4double dp{ 0 }; 91 G4double nMax{ 0 }; 92 G4bool first{ false }; 93 G4bool verbose{ false }; 94 G4int tCphotons{ 0 }; 95 G4int tSphotons{ 0 }; 96 G4double NumElectrons(G4double e, G4double ds); 97 lArTPCHitsCollection* flArTPCHitsCollection{ nullptr }; 98 G4int fHCID{ 0 }; 99 }; 100