source: trunk/examples/advanced/lAr_calorimeter/src/FCALTestbeamSetupSD.cc@ 1194

Last change on this file since 1194 was 807, checked in by garnier, 17 years ago

update

File size: 6.7 KB
RevLine 
[807]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: FCALTestbeamSetupSD.cc,v 1.11 2006/06/29 16:03:25 gunter Exp $
27// GEANT4 tag $Name: $
28//
29//
30
31//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
33
34#include "FCALTestbeamSetupSD.hh"
35
36#include "FCALCalorHit.hh"
37
38#include "FCALTestbeamSetup.hh"
39
40#include "G4VPhysicalVolume.hh"
41#include "G4Step.hh"
42#include "G4Track.hh"
43#include "G4VTouchable.hh"
44#include "G4TouchableHistory.hh"
45#include "G4SDManager.hh"
46
47#include "G4ios.hh"
48#include <iostream>
49#include <fstream>
50
51//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
52
53FCALTestbeamSetupSD::FCALTestbeamSetupSD(G4String name) : G4VSensitiveDetector(name)
54{;}
55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
57
58FCALTestbeamSetupSD::~FCALTestbeamSetupSD()
59{;}
60
61//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
62
63void FCALTestbeamSetupSD::Initialize(G4HCofThisEvent*)
64{
65 EBeamS1 = EBeamS2 = EBeamS3 = 0.;
66 EHoleScint = EBeamHole = 0.;
67 EBeamDead = 0;
68 G4int j;
69 for (j =0 ; j<8 ; j++) { ETailVis[j] = 0.;};
70 for (j =0 ; j<7 ; j++) { ETailDep[j] = 0.;};
71 TailCatcherID = 0;
72}
73
74//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
75
76G4bool FCALTestbeamSetupSD::ProcessHits(G4Step* aStep,G4TouchableHistory*)
77{
78
79 G4double edep = aStep->GetTotalEnergyDeposit();
80 if (edep==0.) return false;
81
82 G4TouchableHistory* theTouchable
83 = (G4TouchableHistory*)(aStep->GetPreStepPoint()->GetTouchable());
84 G4VPhysicalVolume* physVol = theTouchable->GetVolume();
85
86
87 if(strcmp(physVol->GetName(),"ScintS1Physical")==0) {
88 EBeamS1 = EBeamS1 + edep;}
89
90 if(strcmp(physVol->GetName(),"ScintS2Physical")==0) {
91 EBeamS2 = EBeamS2 + edep;}
92
93 if(strcmp(physVol->GetName(),"ScintS3Physical")==0) {
94 EBeamS3 = EBeamS3 + edep;}
95
96 if(strcmp(physVol->GetName(),"HoleScintPhysical")==0){ EHoleScint =+ edep;}
97 if(strcmp(physVol->GetName(),"HoleCntrScintPhysical")==0){
98 EBeamHole = EBeamHole + edep;}
99
100 if(strcmp(physVol->GetName(),"MWPCPhysical")==0) { EBeamDead =+ edep;};
101 if(strcmp(physVol->GetName(),"HoleCntrPbPhysical")==0) { EBeamDead =+ edep;};
102 if(strcmp(physVol->GetName(),"HoleCntrAlPhysical")==0) { EBeamDead =+ edep;};
103 if(strcmp(physVol->GetName(),"LeadWallPhysical")==0) { EBeamDead =+ edep;};
104 if(strcmp(physVol->GetName(),"IronWallPhysical")==0) { EBeamDead =+ edep;};
105
106 if(strcmp(physVol->GetName(),"BigScintPhysical")==0) {
107 TailCatcherID = physVol->GetCopyNo();
108 if(TailCatcherID > 0) ETailVis[TailCatcherID] =+ edep;
109 }
110 if(strcmp(physVol->GetName(),"SmallScintPhysical")==0) {
111 TailCatcherID = physVol->GetCopyNo();
112 if(TailCatcherID > 0) ETailVis[TailCatcherID + 3] =+ edep;
113 }
114
115 if(strcmp(physVol->GetName(),"BigIronPhysical")==0) {
116 TailCatcherID = physVol->GetCopyNo();
117 if(TailCatcherID > 0) ETailDep[TailCatcherID] =+ edep;
118 }
119 if(strcmp(physVol->GetName(),"SmallIronPhysical")==0) {
120 TailCatcherID = physVol->GetCopyNo();
121 if(TailCatcherID > 0) ETailDep[TailCatcherID+2] =+ edep;
122 }
123
124 return true;
125}
126
127//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
128
129void FCALTestbeamSetupSD::EndOfEvent(G4HCofThisEvent*)
130{
131 G4cout << " Visisble Energy in S1 , S2 , S3 in (MeV)" << G4endl;
132 G4cout << EBeamS1/MeV << " " << EBeamS2/MeV << " " << EBeamS3/MeV << " " << G4endl;
133
134 G4cout << " Visible Energy in Hole Counter (MeV) " << G4endl;
135 G4cout << EHoleScint/MeV << " " << EBeamHole/MeV << G4endl;
136
137 G4cout << " Visible Energy in Upstream Dead Materials " << G4endl;
138 G4cout << EBeamDead/MeV << G4endl;
139
140 G4cout << " Visible Energy in Tail Catcher Scintillator" << G4endl;
141 G4int j;
142 for (j=1; j<8 ; j++) {G4cout << ETailVis[j]/MeV << " " ;}; G4cout << G4endl;
143
144 G4cout << " Visible Energy in Tail Catcher Absorber" << G4endl;
145 for (j=1; j<7 ; j++) {G4cout << ETailDep[j]/MeV << " " ;}; G4cout << G4endl;
146
147// Write data in File
148 //-------------------
149 G4String FileName = "Beam_802_1mm.dat";
150 std::ios::openmode iostemp;
151 if(InitBeam == 0) {
152 iostemp = std::ios::out;
153 InitBeam++;
154 } else {
155 iostemp = std::ios::out|std::ios::app;
156 };
157
158 std::ofstream BeamDatafile(FileName, iostemp);
159 // BeamDatafile.precision(5);
160
161 BeamDatafile << EBeamS1/MeV << " " << EBeamS2/MeV << " " << EBeamS3/MeV << std::endl;
162 BeamDatafile << EBeamHole/MeV << std::endl;
163 BeamDatafile << EBeamDead/MeV << std::endl;
164 for (j=1; j<8 ; j++) { BeamDatafile << ETailVis[j]/MeV << " " ;} ; BeamDatafile << std::endl;
165 for (j=1; j<7 ; j++) { BeamDatafile << ETailDep[j]/MeV << " " ;} ; BeamDatafile << std::endl;
166
167 BeamDatafile.close();
168
169
170}
171
172//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
173
174void FCALTestbeamSetupSD::clear()
175{}
176
177//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
178
179void FCALTestbeamSetupSD::DrawAll()
180{}
181
182//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
183
184void FCALTestbeamSetupSD::PrintAll()
185{}
186
187//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
188
Note: See TracBrowser for help on using the repository browser.