source: trunk/source/digits_hits/scorer/src/G4PSTermination.cc@ 1343

Last change on this file since 1343 was 1340, checked in by garnier, 15 years ago

update ti head

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: G4PSTermination.cc,v 1.5 2010/07/23 04:35:38 taso Exp $
28// GEANT4 tag $Name: $
29//
30// G4PSTermination
31#include "G4PSTermination.hh"
32
33///////////////////////////////////////////////////////////////////////////////
34// (Description)
35// This is a primitive scorer class for scoring only terminated traks inside
36// the cell.
37//
38// Created: 2007-02-02 Tsukasa ASO, Akinori Kimura.
39// 2010-07-22 Introduce Unit specification.
40//
41///////////////////////////////////////////////////////////////////////////////
42
43G4PSTermination::G4PSTermination(G4String name, G4int depth)
44 :G4VPrimitiveScorer(name,depth),HCID(-1),weighted(false)
45{
46 SetUnit("");
47}
48
49G4PSTermination::~G4PSTermination()
50{;}
51
52G4bool G4PSTermination::ProcessHits(G4Step* aStep,G4TouchableHistory*)
53{
54 if ( aStep->GetTrack()->GetTrackStatus() != fStopAndKill ) return FALSE;
55
56 G4int index = GetIndex(aStep);
57 G4double val = 1.0;
58 if(weighted) val *= aStep->GetPreStepPoint()->GetWeight();
59 EvtMap->add(index,val);
60 return TRUE;
61}
62
63void G4PSTermination::Initialize(G4HCofThisEvent* HCE)
64{
65 EvtMap = new G4THitsMap<G4double>(detector->GetName(),GetName());
66 if(HCID < 0) {HCID = GetCollectionID(0);}
67 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
68}
69
70void G4PSTermination::EndOfEvent(G4HCofThisEvent*)
71{;}
72
73void G4PSTermination::clear(){
74 EvtMap->clear();
75}
76
77void G4PSTermination::DrawAll()
78{;}
79
80void G4PSTermination::PrintAll()
81{
82 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
83 G4cout << " PrimitiveScorer " << GetName() << G4endl;
84 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
85 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
86 for(; itr != EvtMap->GetMap()->end(); itr++) {
87 G4cout << " copy no.: " << itr->first
88 << " collisions: " << *(itr->second)
89 << G4endl;
90 }
91}
92
93void G4PSTermination::SetUnit(const G4String& unit)
94{
95 if (unit == "" ){
96 unitName = unit;
97 unitValue = 1.0;
98 }else{
99 G4String msg = "Invalid unit ["+unit+"] (Current unit is [" +GetUnit()+"] )";
100 G4Exception(GetName(),"DetScorer0000",JustWarning,msg);
101 }
102
103}
104
Note: See TracBrowser for help on using the repository browser.