source: trunk/examples/extended/field/field03/src/F03EventAction.cc @ 1337

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

tag geant4.9.4 beta 1 + modifs locales

File size: 4.2 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: F03EventAction.cc,v 1.7 2010/06/06 04:56:36 perl Exp $
28// GEANT4 tag $Name: geant4-09-04-beta-01 $
29//
30//
31
32//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
33//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
34
35#include "F03EventAction.hh"
36
37#include "F03RunAction.hh"
38
39#include "F03CalorHit.hh"
40#include "F03EventActionMessenger.hh"
41
42#include "G4Event.hh"
43#include "G4EventManager.hh"
44#include "G4HCofThisEvent.hh"
45#include "G4VHitsCollection.hh"
46#include "G4SDManager.hh"
47#include "G4ios.hh"
48#include "G4UnitsTable.hh"
49#include "Randomize.hh"
50
51//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
52
53F03EventAction::F03EventAction(F03RunAction* F03RA)
54 : calorimeterCollID(-1), eventMessenger(0),
55   runaction(F03RA), verboselevel(0),
56   drawFlag("all"), printModulo(10000)
57{
58  eventMessenger = new F03EventActionMessenger(this);
59}
60
61//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
62
63F03EventAction::~F03EventAction()
64{
65  delete eventMessenger;
66}
67
68//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
69
70void F03EventAction::BeginOfEventAction(const G4Event* evt)
71{
72 G4int evtNb = evt->GetEventID();
73 if (evtNb%printModulo == 0) 
74    G4cout << "\n---> Begin of Event: " << evtNb << G4endl;
75     
76  if(verboselevel>1)
77    G4cout << "<<< Event  " << evtNb << " started." << G4endl;
78   
79  if (calorimeterCollID==-1)
80    {
81     G4SDManager * SDman = G4SDManager::GetSDMpointer();
82     calorimeterCollID = SDman->GetCollectionID("CalCollection");
83    } 
84}
85
86//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
87
88void F03EventAction::EndOfEventAction(const G4Event* evt)
89{
90  if(verboselevel>0)
91    G4cout << "<<< Event  " << evt->GetEventID() << " ended." << G4endl;
92 
93 
94  //save rndm status
95  if (runaction->GetRndmFreq() == 2)
96    { 
97     CLHEP::HepRandom::saveEngineStatus("endOfEvent.rndm");   
98     G4int evtNb = evt->GetEventID();
99     if (evtNb%printModulo == 0)
100       { 
101        G4cout << "\n---> End of Event: " << evtNb << G4endl;
102        CLHEP::HepRandom::showEngineStatus();
103       }
104    }     
105}
106
107//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
108
109G4int F03EventAction::GetEventno()
110{
111  G4int evno = fpEventManager->GetConstCurrentEvent()->GetEventID() ;
112  return evno ;
113}
114
115//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
116
117void F03EventAction::setEventVerbose(G4int level)
118{
119  verboselevel = level ;
120}
121
122//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
Note: See TracBrowser for help on using the repository browser.