Geant4 Cross Reference |
>> 1 // This code implementation is the intellectual property of >> 2 // the GEANT4 collaboration. 1 // 3 // 2 // ******************************************* << 4 // By copying, distributing or modifying the Program (or any work 3 // * License and Disclaimer << 5 // based on the Program) you indicate your acceptance of this statement, 4 // * << 6 // and all its terms. 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 // 7 // 26 // G4ProcessTableMessenger << 8 // $Id: G4ProcessTableMessenger.hh,v 1.3 1999/11/07 17:11:45 kurasige Exp $ >> 9 // GEANT4 tag $Name: geant4-02-00 $ 27 // 10 // 28 // Class description: << 29 // 11 // 30 // Messenger class to exchange information bet << 12 //--------------------------------------------------------------- 31 // 13 // >> 14 // G4ProcessTableMessenger.hh >> 15 // >> 16 // Class Description: >> 17 // This is a messenger class to interface to exchange information >> 18 // between ProcessTable and UI. >> 19 //- 32 // /process/ Process Table control commands 20 // /process/ Process Table control commands. 33 // Commands : 21 // Commands : 34 // list * : Dump process name regist << 22 // list * :Dump process name registered. 35 // verbose * : Set Verbose Level for Pr << 23 // verbose * :Set Verbose Level for Process Table 36 // activate * : Activate process << 24 // activate * :Activate process 37 // inactivate * : Inctivate process << 25 // inactivate * :Inctivate process 38 // dump * : Dump process information << 26 // dump * :Dump process information 39 << 27 // 40 // Author: H.Kurashige, 15 August 1998 << 28 // History: 41 // ------------------------------------------- << 29 // 15 Aug. 1998, H. Kurashige 42 #ifndef G4ProcessTableMessenger_hh << 30 // 43 #define G4ProcessTableMessenger_hh 1 << 31 //--------------------------------------------------------------- 44 32 45 #include "G4UImessenger.hh" << 33 #ifndef G4ProcessTableMessenger_h 46 #include "globals.hh" << 34 #define G4ProcessTableMessenger_h 1 47 #include "G4ProcessType.hh" << 48 35 49 class G4ProcessTable; 36 class G4ProcessTable; >> 37 50 class G4UIdirectory; 38 class G4UIdirectory; 51 class G4UIcmdWithoutParameter; 39 class G4UIcmdWithoutParameter; 52 class G4UIcmdWithAnInteger; 40 class G4UIcmdWithAnInteger; 53 class G4UIcmdWithAString; 41 class G4UIcmdWithAString; 54 42 55 class G4ProcessTableMessenger : public G4UImes << 43 #include "G4UImessenger.hh" >> 44 #include "globals.hh" >> 45 #include "G4ProcessType.hh" >> 46 >> 47 class G4ProcessTableMessenger: public G4UImessenger 56 { 48 { 57 public: 49 public: 58 << 59 G4ProcessTableMessenger(G4ProcessTable* pT 50 G4ProcessTableMessenger(G4ProcessTable* pTable); 60 virtual ~G4ProcessTableMessenger(); 51 virtual ~G4ProcessTableMessenger(); 61 52 62 G4ProcessTableMessenger(const G4ProcessTab << 53 public: // with description 63 G4ProcessTableMessenger& operator=(const G << 64 << 65 virtual void SetNewValue(G4UIcommand * com 54 virtual void SetNewValue(G4UIcommand * command,G4String newValues); 66 virtual G4String GetCurrentValue(G4UIcomma 55 virtual G4String GetCurrentValue(G4UIcommand * command); 67 56 68 private: 57 private: 69 << 70 G4ProcessTableMessenger(){} << 71 << 72 G4String GetProcessTypeName(G4ProcessType 58 G4String GetProcessTypeName(G4ProcessType aType) const; 73 G4int GetProcessType(const G4String& aT 59 G4int GetProcessType(const G4String& aTypeName) const; 74 static G4ThreadLocal G4int NumberOfProcess << 60 static G4int NumberOfProcessType; 75 void SetNumberOfProcessType(); 61 void SetNumberOfProcessType(); 76 62 77 private: 63 private: >> 64 G4ProcessTableMessenger(const G4ProcessTableMessenger&){}; >> 65 G4ProcessTableMessenger(){}; 78 66 79 G4ProcessTable* theProcessTable = nullptr; << 67 private: >> 68 G4ProcessTable* theProcessTable; 80 69 81 G4UIdirectory* thisDirectory = null << 70 G4UIdirectory * thisDirectory; 82 G4UIcmdWithAnInteger* verboseCmd = nullptr << 71 G4UIcmdWithAnInteger * verboseCmd; 83 G4UIcmdWithAString* listCmd = nullptr; << 72 G4UIcmdWithAString * listCmd; 84 G4UIcommand* dumpCmd = nullptr; << 73 G4UIcommand * dumpCmd; 85 G4UIcommand* activateCmd = nullpt << 74 G4UIcommand * activateCmd; 86 G4UIcommand* inactivateCmd = null << 75 G4UIcommand * inactivateCmd; 87 G4UIcommand* procVerboseCmd = nul << 76 88 << 77 G4String currentProcessTypeName; 89 G4String currentProcessTypeName = "all"; << 78 G4String currentProcessName; 90 G4String currentProcessName = "all"; << 79 G4String currentParticleName; 91 G4String currentParticleName = "all"; << 92 }; 80 }; 93 81 94 #endif 82 #endif >> 83 >> 84 >> 85 >> 86 95 87