source: trunk/source/digits_hits/scorer/src/G4PSPopulation.cc@ 1350

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

update ti head

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