Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 09:21:57

0001 // ********************************************************************
0002 // * License and Disclaimer                                           *
0003 // *                                                                  *
0004 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0005 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0006 // * conditions of the Geant4 Software License,  included in the file *
0007 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0008 // * include a list of copyright holders.                             *
0009 // *                                                                  *
0010 // * Neither the authors of this software system, nor their employing *
0011 // * institutes,nor the agencies providing financial support for this *
0012 // * work  make  any representation or  warranty, express or implied, *
0013 // * regarding  this  software system or assume any liability for its *
0014 // * use.  Please see the license in the file  LICENSE  and URL above *
0015 // * for the full disclaimer and the limitation of liability.         *
0016 // *                                                                  *
0017 // * This  code  implementation is the result of  the  scientific and *
0018 // * technical work of the GEANT4 collaboration.                      *
0019 // * By using,  copying,  modifying or  distributing the software (or *
0020 // * any work based  on the software)  you  agree  to acknowledge its *
0021 // * use  in  resulting  scientific  publications,  and indicate your *
0022 // * acceptance of all terms of the Geant4 Software license.          *
0023 // ********************************************************************
0024 
0025 //GEANT4 - Depth-of-Interaction enabled Positron emission tomography (PET) advanced example 
0026 
0027 //Contributors
0028 
0029 // Abdella M. Ahmed (1, 2), Andrew Chacon (1, 2), Harley Rutherford (1, 2),
0030 // Hideaki Tashima (3), Go Akamatsu (3), Akram Mohammadi (3), Eiji Yoshida (3), Taiga Yamaya (3)
0031 // Susanna Guatelli (2), and Mitra Safavi-Naeini (1, 2)
0032 
0033 // (1) Australian Nuclear Science and Technology Organisation, Australia
0034 // (2) University of Wollongong, Australia
0035 // (3) National Institute of Radiological Sciences, Japan
0036 
0037 
0038 #ifndef doiPETAnalysisMessenger_h
0039 #define doiPETAnalysisMessenger_h 1
0040 
0041 #include "globals.hh"
0042 #include "G4UImessenger.hh"
0043 
0044 class doiPETDetectorConstruction;
0045 class G4UIdirectory;
0046 class G4UIcmdWithAString;
0047 class G4UIcmdWithAnInteger;
0048 class G4UIcmdWithADouble;
0049 class G4UIcmdWithoutParameter;
0050 class G4UIcmdWithADoubleAndUnit;
0051 class G4UIcmdWith3VectorAndUnit;
0052 
0053 
0054 
0055 class doiPETAnalysisMessenger : public G4UImessenger
0056 {
0057 public:
0058 
0059     doiPETAnalysisMessenger(doiPETAnalysis* );
0060     ~doiPETAnalysisMessenger();
0061 
0062     void SetNewValue(G4UIcommand* ,G4String );
0063 
0064 
0065 private:
0066 
0067     doiPETAnalysis* ptrAnalysis;
0068     G4UIdirectory           *Dir;
0069     G4UIcmdWithADoubleAndUnit* changeActivityCmd;
0070     G4UIcmdWithADoubleAndUnit* changeHalfLifeCmd;
0071     //G4UIcmdWithAString* ChooseOutputTypeCmd;
0072 
0073 };
0074 
0075 #endif
0076 
0077