Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file TrackingMessenger.cc 27 /// \brief Implementation of the TrackingMesse 28 // 29 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 33 #include "TrackingMessenger.hh" 34 35 #include "TrackingAction.hh" 36 37 #include "G4UIcmdWithABool.hh" 38 #include "G4UIdirectory.hh" 39 40 //....oooOO0OOooo........oooOO0OOooo........oo 41 42 TrackingMessenger::TrackingMessenger(TrackingA 43 { 44 fTrackingDir = new G4UIdirectory("/testhadr/ 45 fTrackingDir->SetGuidance("tracking commands 46 47 fCountCmd = new G4UIcmdWithABool("/testhadr/ 48 fCountCmd->SetGuidance("count created partic 49 fCountCmd->SetParameterName("flag", false); 50 fCountCmd->SetDefaultValue(true); 51 fCountCmd->AvailableForStates(G4State_PreIni 52 53 fKillCmd = new G4UIcmdWithABool("/testhadr/t 54 fKillCmd->SetGuidance("kill secondaries neut 55 fKillCmd->SetParameterName("flag", false); 56 fKillCmd->SetDefaultValue(false); 57 fKillCmd->AvailableForStates(G4State_PreInit 58 } 59 60 //....oooOO0OOooo........oooOO0OOooo........oo 61 62 TrackingMessenger::~TrackingMessenger() 63 { 64 delete fCountCmd; 65 delete fKillCmd; 66 delete fTrackingDir; 67 } 68 69 //....oooOO0OOooo........oooOO0OOooo........oo 70 71 void TrackingMessenger::SetNewValue(G4UIcomman 72 { 73 if (command == fCountCmd) { 74 fTrackingAction->SetParticleCount(fCountCm 75 } 76 77 if (command == fKillCmd) { 78 fTrackingAction->SetKillNeutrons(fKillCmd- 79 } 80 } 81 82 //....oooOO0OOooo........oooOO0OOooo........oo 83