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 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 31 32 #include <iostream> 33 34 #include "FCALTestbeamSetupSD.hh" 35 36 #include "FCALCalorHit.hh" 37 38 #include "FCALTestbeamSetup.hh" 39 40 #include "G4SystemOfUnits.hh" 41 #include "G4VPhysicalVolume.hh" 42 #include "G4Step.hh" 43 #include "G4Track.hh" 44 #include "G4VTouchable.hh" 45 #include "G4TouchableHistory.hh" 46 #include "G4SDManager.hh" 47 48 #include "G4ios.hh" 49 50 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 51 52 FCALTestbeamSetupSD::FCALTestbeamSetupSD(G4String name) : G4VSensitiveDetector(name) 53 {} 54 55 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 56 57 FCALTestbeamSetupSD::~FCALTestbeamSetupSD() 58 {} 59 60 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 61 62 void FCALTestbeamSetupSD::Initialize(G4HCofThisEvent*) 63 { 64 EBeamS1 = EBeamS2 = EBeamS3 = 0.; 65 EHoleScint = EBeamHole = 0.; 66 EBeamDead = 0; 67 G4int j; 68 for (j =0 ; j<NLENGTH ; j++) { 69 ETailVis[j] = 0.; 70 ETailDep[j] = 0.; 71 } 72 TailCatcherID = 0; 73 } 74 75 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 76 77 G4bool FCALTestbeamSetupSD::ProcessHits(G4Step* aStep,G4TouchableHistory*) 78 { 79 80 G4double edep = aStep->GetTotalEnergyDeposit(); 81 if (edep==0.) return true; 82 83 G4TouchableHistory* theTouchable 84 = (G4TouchableHistory*)(aStep->GetPreStepPoint()->GetTouchable()); 85 G4VPhysicalVolume* physVol = theTouchable->GetVolume(); 86 87 G4String name = physVol->GetName(); 88 TailCatcherID = physVol->GetCopyNo(); 89 90 if(name == "ScintS1Physical") { 91 EBeamS1 = EBeamS1 + edep;} 92 93 else if(name == "ScintS2Physical") { 94 EBeamS2 = EBeamS2 + edep;} 95 96 else if(name == "ScintS3Physical") { 97 EBeamS3 = EBeamS3 + edep;} 98 99 else if(name == "HoleScintPhysical"){ EHoleScint += edep;} 100 else if(name == "HoleCntrScintPhysical"){ 101 EBeamHole = EBeamHole + edep;} 102 103 else if(name == "MWPCPhysical") { EBeamDead += edep;} 104 else if(name == "HoleCntrPbPhysical") { EBeamDead += edep;} 105 else if(name == "HoleCntrAlPhysical") { EBeamDead += edep;} 106 else if(name == "LeadWallPhysical") { EBeamDead += edep;} 107 else if(name == "IronWallPhysical") { EBeamDead += edep;} 108 else if(TailCatcherID >= 0 && TailCatcherID < NLENGTH) { 109 if(name == "BigScintPhysical") { 110 ETailVis[TailCatcherID] += edep; 111 } 112 else if(name == "SmallScintPhysical") { 113 if(TailCatcherID+3 < NLENGTH) ETailVis[TailCatcherID + 3] += edep; 114 } 115 else if(name == "BigIronPhysical") { 116 ETailDep[TailCatcherID] += edep; 117 } 118 else if(name == "SmallIronPhysical") { 119 if(TailCatcherID+2 < NLENGTH) ETailDep[TailCatcherID+2] += edep; 120 } 121 } 122 123 return true; 124 } 125 126 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 127 128 void FCALTestbeamSetupSD::EndOfEvent(G4HCofThisEvent*) 129 { 130 G4cout << " Visisble Energy in S1 , S2 , S3 in (MeV)" << G4endl; 131 G4cout << EBeamS1/MeV << " " << EBeamS2/MeV << " " << EBeamS3/MeV << " " << G4endl; 132 133 G4cout << " Visible Energy in Hole Counter (MeV) " << G4endl; 134 G4cout << EHoleScint/MeV << " " << EBeamHole/MeV << G4endl; 135 136 G4cout << " Visible Energy in Upstream Dead Materials " << G4endl; 137 G4cout << EBeamDead/MeV << G4endl; 138 139 G4cout << " Visible Energy in Tail Catcher Scintillator" << G4endl; 140 G4int j; 141 for (j=1; j<8 ; j++) {G4cout << ETailVis[j]/MeV << " " ;}; G4cout << G4endl; 142 143 G4cout << " Visible Energy in Tail Catcher Absorber" << G4endl; 144 for (j=1; j<7 ; j++) {G4cout << ETailDep[j]/MeV << " " ;}; G4cout << G4endl; 145 146 } 147 148 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 149 150 void FCALTestbeamSetupSD::clear() 151 {} 152 153 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 154 155 void FCALTestbeamSetupSD::DrawAll() 156 {} 157 158 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 159 160 void FCALTestbeamSetupSD::PrintAll() 161 {} 162 163 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 164 165