Ignore:
Timestamp:
Sep 30, 2010, 2:47:17 PM (14 years ago)
Author:
garnier
Message:

tag geant4.9.4 beta 1 + modifs locales

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/extended/electromagnetic/TestEm5/src/EventAction.cc

    r1230 r1337  
    2424// ********************************************************************
    2525//
    26 // $Id: EventAction.cc,v 1.7 2009/03/06 18:04:23 maire Exp $
    27 // GEANT4 tag $Name: geant4-09-03-cand-01 $
     26// $Id: EventAction.cc,v 1.9 2010/06/07 05:40:46 perl Exp $
     27// GEANT4 tag $Name: geant4-09-04-beta-01 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3737
    3838#include "G4Event.hh"
    39 #include "G4TrajectoryContainer.hh"
    40 #include "G4Trajectory.hh"
    41 #include "G4VVisManager.hh"
    4239
    4340//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    7673//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    7774
    78 void EventAction::EndOfEventAction(const G4Event* evt)
     75void EventAction::EndOfEventAction(const G4Event*)
    7976{
    8077 runaction->AddEnergy(EnergyDeposit);
     
    8986
    9087 histoManager->FillHisto(1,EnergyDeposit);
    91 
    92  if (G4VVisManager::GetConcreteInstance())
    93   {
    94    G4TrajectoryContainer* trajectoryContainer = evt->GetTrajectoryContainer();
    95    G4int n_trajectories = 0;
    96    if (trajectoryContainer) n_trajectories = trajectoryContainer->entries(); 
    97    for (G4int i=0; i<n_trajectories; i++)
    98       { G4Trajectory* trj = (G4Trajectory*)
    99                                       ((*(evt->GetTrajectoryContainer()))[i]);
    100         if (drawFlag == "all") trj->DrawTrajectory(1000);
    101         else if ((drawFlag == "charged")&&(trj->GetCharge() != 0.))
    102                                trj->DrawTrajectory(1000);
    103         else if ((drawFlag == "neutral")&&(trj->GetCharge() == 0.))
    104                                trj->DrawTrajectory(1000);
    105                                
    106       }
    107   } 
    10888}
    10989
Note: See TracChangeset for help on using the changeset viewer.