Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 23 27 //....oooOO0OOooo........oooOO0OOooo........oo 24 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 28 25 29 // Author: Patricia Mendez (patricia.mendez@ce 26 // Author: Patricia Mendez (patricia.mendez@cern.ch) 30 27 31 28 32 29 33 #include "FCALTBEventActionMessenger.hh" 30 #include "FCALTBEventActionMessenger.hh" 34 31 35 #include "FCALTBEventAction.hh" 32 #include "FCALTBEventAction.hh" 36 #include "G4UIcmdWithAString.hh" 33 #include "G4UIcmdWithAString.hh" 37 #include "G4UIcmdWithAnInteger.hh" 34 #include "G4UIcmdWithAnInteger.hh" 38 #include "globals.hh" 35 #include "globals.hh" 39 36 40 //....oooOO0OOooo........oooOO0OOooo........oo 37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 38 42 FCALTBEventActionMessenger::FCALTBEventActionM 39 FCALTBEventActionMessenger::FCALTBEventActionMessenger(FCALTBEventAction* EvAct) 43 :eventAction(EvAct) 40 :eventAction(EvAct) 44 { 41 { 45 DrawCmd = new G4UIcmdWithAString("/event/dra 42 DrawCmd = new G4UIcmdWithAString("/event/drawTracks",this); 46 DrawCmd->SetGuidance("Draw the tracks in the 43 DrawCmd->SetGuidance("Draw the tracks in the event"); 47 DrawCmd->SetGuidance(" Choice : none,charge 44 DrawCmd->SetGuidance(" Choice : none,charged, all"); 48 DrawCmd->SetParameterName("choice",true); 45 DrawCmd->SetParameterName("choice",true); 49 DrawCmd->SetDefaultValue("all"); 46 DrawCmd->SetDefaultValue("all"); 50 DrawCmd->SetCandidates("none charged all"); 47 DrawCmd->SetCandidates("none charged all"); 51 DrawCmd->AvailableForStates(G4State_Idle); 48 DrawCmd->AvailableForStates(G4State_Idle); 52 49 53 PrintCmd = new G4UIcmdWithAnInteger("/event/ 50 PrintCmd = new G4UIcmdWithAnInteger("/event/printModulo",this); 54 PrintCmd->SetGuidance("Print events modulo n 51 PrintCmd->SetGuidance("Print events modulo n"); 55 PrintCmd->SetParameterName("EventNb",false); 52 PrintCmd->SetParameterName("EventNb",false); 56 PrintCmd->SetRange("EventNb>0"); 53 PrintCmd->SetRange("EventNb>0"); 57 PrintCmd->AvailableForStates(G4State_Idle); 54 PrintCmd->AvailableForStates(G4State_Idle); 58 } 55 } 59 56 60 //....oooOO0OOooo........oooOO0OOooo........oo 57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 58 62 FCALTBEventActionMessenger::~FCALTBEventAction 59 FCALTBEventActionMessenger::~FCALTBEventActionMessenger() 63 { 60 { 64 delete DrawCmd; 61 delete DrawCmd; 65 delete PrintCmd; 62 delete PrintCmd; 66 } 63 } 67 64 68 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 69 66 70 void FCALTBEventActionMessenger::SetNewValue(G 67 void FCALTBEventActionMessenger::SetNewValue(G4UIcommand* command, 71 G4St 68 G4String newValue) 72 { 69 { 73 if(command == DrawCmd) 70 if(command == DrawCmd) 74 {eventAction->SetDrawFlag(newValue);} 71 {eventAction->SetDrawFlag(newValue);} 75 72 76 if(command == PrintCmd) 73 if(command == PrintCmd) 77 {eventAction->SetPrintModulo(PrintCmd->Get 74 {eventAction->SetPrintModulo(PrintCmd->GetNewIntValue(newValue));} 78 75 79 } 76 } 80 77 81 //....oooOO0OOooo........oooOO0OOooo........oo 78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 82 << 83 79