source: trunk/source/digits_hits/scorer/src/G4PSNofStep.cc@ 883

Last change on this file since 883 was 850, checked in by garnier, 17 years ago

geant4.8.2 beta

File size: 3.1 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: G4PSNofStep.cc,v 1.2 2007/08/29 06:36:42 taso Exp $
28// GEANT4 tag $Name: HEAD $
29//
30// G4PSNofStep
31#include "G4PSNofStep.hh"
32
33// (Description)
34// This is a primitive scorer class for scoring number of steps in the
35// Cell.
36//
37// Created: 2005-11-14 Tsukasa ASO, Akinori Kimura.
38//
39
40G4PSNofStep::G4PSNofStep(G4String name, G4int depth)
41 :G4VPrimitiveScorer(name,depth),HCID(-1),boundaryFlag(false)
42{;}
43
44G4PSNofStep::~G4PSNofStep()
45{;}
46
47G4bool G4PSNofStep::ProcessHits(G4Step* aStep,G4TouchableHistory*)
48{
49 if ( boundaryFlag ) {
50 if ( aStep->GetStepLength() == 0. ) return FALSE;
51 }
52 G4int index = GetIndex(aStep);
53 G4double val = 1.0;
54 EvtMap->add(index,val);
55 return TRUE;
56}
57
58void G4PSNofStep::Initialize(G4HCofThisEvent* HCE)
59{
60 EvtMap = new G4THitsMap<G4double>(detector->GetName(),GetName());
61 if(HCID < 0) {HCID = GetCollectionID(0);}
62 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
63}
64
65void G4PSNofStep::EndOfEvent(G4HCofThisEvent*)
66{;}
67
68void G4PSNofStep::clear(){
69 EvtMap->clear();
70}
71
72void G4PSNofStep::DrawAll()
73{;}
74
75void G4PSNofStep::PrintAll()
76{
77 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
78 G4cout << " PrimitiveScorer " << GetName() << G4endl;
79 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
80 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
81 for(; itr != EvtMap->GetMap()->end(); itr++) {
82 G4cout << " copy no.: " << itr->first
83 << " num of step: " << *(itr->second)
84 << G4endl;
85 }
86}
87
Note: See TracBrowser for help on using the repository browser.