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 // G4EvManMessenger class implementation << 27 // 23 // 28 // Author: M.Asai, SLAC << 24 // $Id: G4EvManMessenger.cc,v 1.4 2002/12/04 18:43:15 asaim Exp $ >> 25 // GEANT4 tag $Name: geant4-07-00-cand-01 $ >> 26 // 29 // ------------------------------------------- 27 // -------------------------------------------------------------------- 30 28 31 #include "G4EvManMessenger.hh" 29 #include "G4EvManMessenger.hh" 32 #include "G4EventManager.hh" 30 #include "G4EventManager.hh" 33 #include "G4UIdirectory.hh" 31 #include "G4UIdirectory.hh" 34 #include "G4UIcmdWithoutParameter.hh" 32 #include "G4UIcmdWithoutParameter.hh" 35 #include "G4UIcmdWithAnInteger.hh" 33 #include "G4UIcmdWithAnInteger.hh" 36 34 37 G4EvManMessenger::G4EvManMessenger(G4EventMana 35 G4EvManMessenger::G4EvManMessenger(G4EventManager * fEvMan) 38 : fEvManager(fEvMan) << 36 :fEvManager(fEvMan) 39 { 37 { 40 eventDirectory = new G4UIdirectory("/event/" 38 eventDirectory = new G4UIdirectory("/event/"); 41 eventDirectory->SetGuidance("EventManager co 39 eventDirectory->SetGuidance("EventManager control commands."); 42 40 43 abortCmd = new G4UIcmdWithoutParameter("/eve 41 abortCmd = new G4UIcmdWithoutParameter("/event/abort",this); 44 abortCmd->SetGuidance("Abort current event." 42 abortCmd->SetGuidance("Abort current event."); 45 abortCmd->AvailableForStates(G4State_EventPr 43 abortCmd->AvailableForStates(G4State_EventProc); 46 44 47 verboseCmd = new G4UIcmdWithAnInteger("/even 45 verboseCmd = new G4UIcmdWithAnInteger("/event/verbose",this); 48 verboseCmd->SetGuidance("Set Verbose level o 46 verboseCmd->SetGuidance("Set Verbose level of event management category."); 49 verboseCmd->SetGuidance(" 0 : Silent"); 47 verboseCmd->SetGuidance(" 0 : Silent"); 50 verboseCmd->SetGuidance(" 1 : Stacking infor 48 verboseCmd->SetGuidance(" 1 : Stacking information"); 51 verboseCmd->SetGuidance(" 2 : More..."); 49 verboseCmd->SetGuidance(" 2 : More..."); 52 verboseCmd->SetParameterName("level",false); 50 verboseCmd->SetParameterName("level",false); 53 verboseCmd->SetRange("level>=0"); 51 verboseCmd->SetRange("level>=0"); 54 << 55 storeEvtCmd = new G4UIcmdWithoutParameter("/ << 56 storeEvtCmd->SetGuidance("Store the current << 57 storeEvtCmd->SetGuidance("Stored event is av << 58 storeEvtCmd->SetGuidance("Given the potentia << 59 storeEvtCmd->SetGuidance("the user must be c << 60 storeEvtCmd->AvailableForStates(G4State_Even << 61 } 52 } 62 53 63 G4EvManMessenger::~G4EvManMessenger() 54 G4EvManMessenger::~G4EvManMessenger() 64 { 55 { 65 delete abortCmd; 56 delete abortCmd; 66 delete verboseCmd; 57 delete verboseCmd; 67 delete storeEvtCmd; << 68 delete eventDirectory; 58 delete eventDirectory; 69 } 59 } 70 60 71 void G4EvManMessenger::SetNewValue(G4UIcommand 61 void G4EvManMessenger::SetNewValue(G4UIcommand * command,G4String newValues) 72 { 62 { 73 if( command == verboseCmd ) 63 if( command == verboseCmd ) 74 { fEvManager->SetVerboseLevel(verboseCmd->Ge 64 { fEvManager->SetVerboseLevel(verboseCmd->GetNewIntValue(newValues)); } 75 if( command == abortCmd ) 65 if( command == abortCmd ) 76 { fEvManager->AbortCurrentEvent(); } 66 { fEvManager->AbortCurrentEvent(); } 77 if( command == storeEvtCmd ) << 78 { fEvManager->KeepTheCurrentEvent(); } << 79 } 67 } 80 68 81 G4String G4EvManMessenger::GetCurrentValue(G4U 69 G4String G4EvManMessenger::GetCurrentValue(G4UIcommand * command) 82 { 70 { 83 G4String cv; 71 G4String cv; 84 if( command == verboseCmd ) 72 if( command == verboseCmd ) 85 { cv = verboseCmd->ConvertToString(fEvManage 73 { cv = verboseCmd->ConvertToString(fEvManager->GetVerboseLevel()); } 86 return cv; 74 return cv; 87 } 75 } >> 76 88 77