File indexing completed on 2025-02-23 09:22:20
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031 #ifndef LXeDetectorMessenger_h
0032 #define LXeDetectorMessenger_h 1
0033
0034 #include "G4UImessenger.hh"
0035 #include "globals.hh"
0036
0037 class LXeDetectorConstruction;
0038
0039 class G4UIcmdWithABool;
0040 class G4UIcmdWithADouble;
0041 class G4UIcmdWithADoubleAndUnit;
0042 class G4UIcmdWithAnInteger;
0043 class G4UIcmdWith3VectorAndUnit;
0044 class G4UIcommand;
0045 class G4UIdirectory;
0046
0047 class LXeDetectorMessenger : public G4UImessenger
0048 {
0049 public:
0050 LXeDetectorMessenger(LXeDetectorConstruction*);
0051 ~LXeDetectorMessenger() override;
0052
0053 void SetNewValue(G4UIcommand*, G4String) override;
0054
0055 private:
0056 LXeDetectorConstruction* fLXeDetector = nullptr;
0057 G4UIdirectory* fDetectorDir = nullptr;
0058 G4UIdirectory* fVolumesDir = nullptr;
0059 G4UIcmdWith3VectorAndUnit* fDimensionsCmd = nullptr;
0060 G4UIcmdWithADoubleAndUnit* fHousingThicknessCmd = nullptr;
0061 G4UIcmdWithADoubleAndUnit* fPmtRadiusCmd = nullptr;
0062 G4UIcmdWithAnInteger* fNxCmd = nullptr;
0063 G4UIcmdWithAnInteger* fNyCmd = nullptr;
0064 G4UIcmdWithAnInteger* fNzCmd = nullptr;
0065 G4UIcmdWithABool* fSphereCmd = nullptr;
0066 G4UIcmdWithADouble* fReflectivityCmd = nullptr;
0067 G4UIcmdWithABool* fWlsCmd = nullptr;
0068 G4UIcmdWithABool* fLxeCmd = nullptr;
0069 G4UIcmdWithAnInteger* fNFibersCmd = nullptr;
0070 G4UIcommand* fDefaultsCmd = nullptr;
0071 G4UIcmdWithADouble* fMainScintYield = nullptr;
0072 G4UIcmdWithADouble* fWLSScintYield = nullptr;
0073 G4UIcmdWithAnInteger* fSaveThresholdCmd = nullptr;
0074 };
0075
0076 #endif