source: trunk/examples/extended/electromagnetic/TestEm9/src/SteppingAction.cc @ 1309

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

update to geant4.9.3

File size: 3.7 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//
27// $Id: SteppingAction.cc,v 1.2 2006/06/29 17:03:57 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03-cand-01 $
29//
30//
31/////////////////////////////////////////////////////////////////////////
32//
33// TestEm9: Crystal calorimeter
34//
35// Created: 31.01.03 V.Ivanchenko
36//
37// Modified:
38//
39////////////////////////////////////////////////////////////////////////
40//
41
42//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44
45#include "SteppingAction.hh"
46#include "G4SteppingManager.hh"
47#include "G4VTouchable.hh"
48#include "HistoManager.hh"
49
50//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52SteppingAction::SteppingAction():
53  theHisto(HistoManager::GetPointer())
54{}
55
56//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57
58SteppingAction::~SteppingAction()
59{}
60
61//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
62
63void SteppingAction::UserSteppingAction(const G4Step* aStep)
64{
65  theHisto->AddStep();
66  G4double edep = aStep->GetTotalEnergyDeposit();
67  if(edep == 0.) return;
68
69  const G4VPhysicalVolume* pv = aStep->GetPreStepPoint()->GetPhysicalVolume();
70  const G4LogicalVolume* lv = pv->GetLogicalVolume();
71  //  const G4MaterialCutsCouple* couple = aStep->GetTrack()->GetMaterialCutsCouple();
72  //  G4int idx = couple->GetIndex();
73  //  const G4Material* mat = couple->GetMaterial();
74  //  G4cout << "Step in " << mat->GetName() << "   idx= " << idx << " edep= " << edep << G4endl;
75  G4int volumeIndex = -1;
76
77  G4int copyNo = pv->GetCopyNo();
78  G4String name = lv->GetName();
79  if(name == "Ecal") volumeIndex = 0;
80  else if(name == "Abs1") volumeIndex = 1;
81  else if(name == "Abs2") volumeIndex = 2;
82  else if(name == "Abs3") volumeIndex = 3;
83  else if(name == "Abs4") volumeIndex = 4;
84  else if(name == "Vert") volumeIndex = 5;
85  // G4cout << "     vIndx= " << volumeIndex << " copyNo= " << copyNo << G4endl;
86  if(volumeIndex>=0) theHisto->AddEnergy(edep, volumeIndex, copyNo);
87}
88
89//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
90
91
Note: See TracBrowser for help on using the repository browser.