source: trunk/examples/advanced/lAr_calorimeter/src/FCALEMModuleSD.cc @ 1319

Last change on this file since 1319 was 1230, checked in by garnier, 14 years ago

update to geant4.9.3

File size: 4.9 KB
Line 
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: FCALEMModuleSD.cc,v 1.12 2006/07/21 11:45:53 ribon Exp $
27// GEANT4 tag $Name: geant4-09-03-cand-01 $
28//
29//
30
31//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
33
34#include "FCALEMModuleSD.hh"
35
36#include "FCALCalorHit.hh"
37
38#include "FCALTestbeamSetup.hh"
39#include "FCALEMModule.hh"
40#include "FCALSteppingAction.hh"
41
42#include "G4VPhysicalVolume.hh"
43#include "G4Step.hh"
44#include "G4Track.hh"
45#include "G4VTouchable.hh"
46#include "G4TouchableHistory.hh"
47#include "G4SDManager.hh"
48
49#include "G4ios.hh"
50#include <iostream>
51#include <fstream>
52
53//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
54
55FCALEMModuleSD::FCALEMModuleSD(G4String name) : G4VSensitiveDetector(name),
56                                                Init_state(0)
57{
58  EmModule = new FCALEMModule();
59}
60
61//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
62
63FCALEMModuleSD::~FCALEMModuleSD()
64{
65  delete EmModule;
66}
67
68//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
69
70void FCALEMModuleSD::Initialize(G4HCofThisEvent*)
71{
72  if (Init_state==0) 
73    {
74      EmModule->InitializeGeometry();
75      Init_state++;
76    };
77
78  for (G4int j=0 ; j<1131 ; j++) {EvisF1Tile[j] = 0.;}   
79}
80
81//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
82
83G4bool FCALEMModuleSD::ProcessHits(G4Step* aStep,G4TouchableHistory*)
84{
85 
86  G4double edep = aStep->GetTotalEnergyDeposit();
87  if (edep==0.) return false;
88
89  G4TouchableHistory* theTouchable
90    = (G4TouchableHistory*)(aStep->GetPreStepPoint()->GetTouchable()); 
91  G4VPhysicalVolume* physVol = theTouchable->GetVolume();
92
93
94  if(strcmp(physVol->GetName(),"F1LArGapPhysical")==0){
95    G4int F1LArGapId = physVol->GetCopyNo();
96    G4int F1TileId = EmModule->GetF1TileID(F1LArGapId);
97    EvisF1Tile[F1TileId] = EvisF1Tile[F1TileId] + edep;
98  };
99
100  return true;
101}
102
103//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
104
105void FCALEMModuleSD::EndOfEvent(G4HCofThisEvent*)
106{
107  G4int NF1Tile = 0;
108  G4int AddTileP[300];
109  G4double EvisTileP[300];
110  G4int i=0;
111  for (i=1; i <= 1130; i++){
112    if(EvisF1Tile[i] > 0.) {
113      NF1Tile++;
114      AddTileP[NF1Tile] = i;
115      EvisTileP[NF1Tile] = EvisF1Tile[i];
116    }
117  }
118
119  G4cout << "Number of F1 Tiles with Positive energy : " << NF1Tile <<  G4endl;
120
121  // Write in File
122  //--------------
123  const char * FileName = "EmModule_802_1mm.dat";
124  std::ios::openmode iostemp;
125  if(Init_state == 1) {
126    iostemp = std::ios::out;
127    Init_state++;
128  } else {
129    iostemp = std::ios::out|std::ios::app; // std::ios::app; 
130  }
131 
132  std::ofstream EmDatafile(FileName, iostemp);
133  // EmDatafile.precision(5);
134
135  EmDatafile << NF1Tile << std::endl;
136  for (i=1; i <= NF1Tile; i++) {
137    EmDatafile << AddTileP[i] << " " << EvisTileP[i]/MeV << std::endl;
138  }
139  EmDatafile.close();
140
141}
142 
143
144//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
145
146void FCALEMModuleSD::clear()
147{} 
148
149//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
150
151void FCALEMModuleSD::DrawAll()
152{} 
153
154//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
155
156void FCALEMModuleSD::PrintAll()
157{} 
158
159//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
160
Note: See TracBrowser for help on using the repository browser.