Geant4 Cross Reference |
1 // ******************************************************************** 2 // * License and Disclaimer * 3 // * * 4 // * The Geant4 software is copyright of the Copyright Holders of * 5 // * the Geant4 Collaboration. It is provided under the terms and * 6 // * conditions of the Geant4 Software License, included in the file * 7 // * LICENSE and available at http://cern.ch/geant4/license . These * 8 // * include a list of copyright holders. * 9 // * * 10 // * Neither the authors of this software system, nor their employing * 11 // * institutes,nor the agencies providing financial support for this * 12 // * work make any representation or warranty, express or implied, * 13 // * regarding this software system or assume any liability for its * 14 // * use. Please see the license in the file LICENSE and URL above * 15 // * for the full disclaimer and the limitation of liability. * 16 // * * 17 // * This code implementation is the result of the scientific and * 18 // * technical work of the GEANT4 collaboration. * 19 // * By using, copying, modifying or distributing the software (or * 20 // * any work based on the software) you agree to acknowledge its * 21 // * use in resulting scientific publications, and indicate your * 22 // * acceptance of all terms of the Geant4 Software license. * 23 // ******************************************************************** 24 25 //GEANT4 - Depth-of-Interaction enabled Positron emission tomography (PET) advanced example 26 27 //Contributors 28 29 // Abdella M. Ahmed (1, 2), Andrew Chacon (1, 2), Harley Rutherford (1, 2), 30 // Hideaki Tashima (3), Go Akamatsu (3), Akram Mohammadi (3), Eiji Yoshida (3), Taiga Yamaya (3) 31 // Susanna Guatelli (2), and Mitra Safavi-Naeini (1, 2) 32 33 // (1) Australian Nuclear Science and Technology Organisation, Australia 34 // (2) University of Wollongong, Australia 35 // (3) National Institute of Radiological Sciences, Japan 36 37 38 #ifndef doiPETAnalysisMessenger_h 39 #define doiPETAnalysisMessenger_h 1 40 41 #include "globals.hh" 42 #include "G4UImessenger.hh" 43 44 class doiPETDetectorConstruction; 45 class G4UIdirectory; 46 class G4UIcmdWithAString; 47 class G4UIcmdWithAnInteger; 48 class G4UIcmdWithADouble; 49 class G4UIcmdWithoutParameter; 50 class G4UIcmdWithADoubleAndUnit; 51 class G4UIcmdWith3VectorAndUnit; 52 53 54 55 class doiPETAnalysisMessenger : public G4UImessenger 56 { 57 public: 58 59 doiPETAnalysisMessenger(doiPETAnalysis* ); 60 ~doiPETAnalysisMessenger(); 61 62 void SetNewValue(G4UIcommand* ,G4String ); 63 64 65 private: 66 67 doiPETAnalysis* ptrAnalysis; 68 G4UIdirectory *Dir; 69 G4UIcmdWithADoubleAndUnit* changeActivityCmd; 70 G4UIcmdWithADoubleAndUnit* changeHalfLifeCmd; 71 //G4UIcmdWithAString* ChooseOutputTypeCmd; 72 73 }; 74 75 #endif 76 77 78