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 // G4ProcessTableMessenger << 27 // 23 // 28 // Class description: << 24 // $Id: G4ProcessTableMessenger.hh,v 1.4 2001/07/11 10:08:17 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-04-00 $ 29 // 26 // 30 // Messenger class to exchange information bet << 31 // 27 // >> 28 //--------------------------------------------------------------- >> 29 // >> 30 // G4ProcessTableMessenger.hh >> 31 // >> 32 // Class Description: >> 33 // This is a messenger class to interface to exchange information >> 34 // between ProcessTable and UI. >> 35 //- 32 // /process/ Process Table control commands 36 // /process/ Process Table control commands. 33 // Commands : 37 // Commands : 34 // list * : Dump process name regist << 38 // list * :Dump process name registered. 35 // verbose * : Set Verbose Level for Pr << 39 // verbose * :Set Verbose Level for Process Table 36 // activate * : Activate process << 40 // activate * :Activate process 37 // inactivate * : Inctivate process << 41 // inactivate * :Inctivate process 38 // dump * : Dump process information << 42 // dump * :Dump process information 39 << 43 // 40 // Author: H.Kurashige, 15 August 1998 << 44 // History: 41 // ------------------------------------------- << 45 // 15 Aug. 1998, H. Kurashige 42 #ifndef G4ProcessTableMessenger_hh << 46 // 43 #define G4ProcessTableMessenger_hh 1 << 47 //--------------------------------------------------------------- 44 48 45 #include "G4UImessenger.hh" << 49 #ifndef G4ProcessTableMessenger_h 46 #include "globals.hh" << 50 #define G4ProcessTableMessenger_h 1 47 #include "G4ProcessType.hh" << 48 51 49 class G4ProcessTable; 52 class G4ProcessTable; >> 53 50 class G4UIdirectory; 54 class G4UIdirectory; 51 class G4UIcmdWithoutParameter; 55 class G4UIcmdWithoutParameter; 52 class G4UIcmdWithAnInteger; 56 class G4UIcmdWithAnInteger; 53 class G4UIcmdWithAString; 57 class G4UIcmdWithAString; 54 58 55 class G4ProcessTableMessenger : public G4UImes << 59 #include "G4UImessenger.hh" >> 60 #include "globals.hh" >> 61 #include "G4ProcessType.hh" >> 62 >> 63 class G4ProcessTableMessenger: public G4UImessenger 56 { 64 { 57 public: 65 public: 58 << 59 G4ProcessTableMessenger(G4ProcessTable* pT 66 G4ProcessTableMessenger(G4ProcessTable* pTable); 60 virtual ~G4ProcessTableMessenger(); 67 virtual ~G4ProcessTableMessenger(); 61 68 62 G4ProcessTableMessenger(const G4ProcessTab << 69 public: // with description 63 G4ProcessTableMessenger& operator=(const G << 64 << 65 virtual void SetNewValue(G4UIcommand * com 70 virtual void SetNewValue(G4UIcommand * command,G4String newValues); 66 virtual G4String GetCurrentValue(G4UIcomma 71 virtual G4String GetCurrentValue(G4UIcommand * command); 67 72 68 private: 73 private: 69 << 70 G4ProcessTableMessenger(){} << 71 << 72 G4String GetProcessTypeName(G4ProcessType 74 G4String GetProcessTypeName(G4ProcessType aType) const; 73 G4int GetProcessType(const G4String& aT 75 G4int GetProcessType(const G4String& aTypeName) const; 74 static G4ThreadLocal G4int NumberOfProcess << 76 static G4int NumberOfProcessType; 75 void SetNumberOfProcessType(); 77 void SetNumberOfProcessType(); 76 78 77 private: 79 private: >> 80 G4ProcessTableMessenger(const G4ProcessTableMessenger&){}; >> 81 G4ProcessTableMessenger(){}; 78 82 79 G4ProcessTable* theProcessTable = nullptr; << 83 private: >> 84 G4ProcessTable* theProcessTable; 80 85 81 G4UIdirectory* thisDirectory = null << 86 G4UIdirectory * thisDirectory; 82 G4UIcmdWithAnInteger* verboseCmd = nullptr << 87 G4UIcmdWithAnInteger * verboseCmd; 83 G4UIcmdWithAString* listCmd = nullptr; << 88 G4UIcmdWithAString * listCmd; 84 G4UIcommand* dumpCmd = nullptr; << 89 G4UIcommand * dumpCmd; 85 G4UIcommand* activateCmd = nullpt << 90 G4UIcommand * activateCmd; 86 G4UIcommand* inactivateCmd = null << 91 G4UIcommand * inactivateCmd; 87 G4UIcommand* procVerboseCmd = nul << 92 88 << 93 G4String currentProcessTypeName; 89 G4String currentProcessTypeName = "all"; << 94 G4String currentProcessName; 90 G4String currentProcessName = "all"; << 95 G4String currentParticleName; 91 G4String currentParticleName = "all"; << 92 }; 96 }; 93 97 94 #endif 98 #endif >> 99 >> 100 >> 101 >> 102 95 103