Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // $Id: G4VModelCommand.hh,v 1.4 2006/09/11 21:22:02 tinslay Exp $ >> 27 // GEANT4 tag $Name: geant4-08-02 $ 26 // 28 // 27 // Jane Tinslay, John Allison, Joseph Perl Nov 29 // Jane Tinslay, John Allison, Joseph Perl November 2005 28 // 30 // 29 // Class Description 31 // Class Description 30 // Templated base class for model messengers. 32 // Templated base class for model messengers. Commands specific to a particular 31 // concrete model should inherit from G4VModel 33 // concrete model should inherit from G4VModelCommand, with the concrete model 32 // type as the template parameter. 34 // type as the template parameter. 33 // Class Description - End: 35 // Class Description - End: 34 36 35 #ifndef G4VMODELCOMMAND_HH 37 #ifndef G4VMODELCOMMAND_HH 36 #define G4VMODELCOMMAND_HH 38 #define G4VMODELCOMMAND_HH 37 39 38 #include "G4UImessenger.hh" 40 #include "G4UImessenger.hh" 39 #include "G4String.hh" 41 #include "G4String.hh" 40 42 41 class G4UIcommand; 43 class G4UIcommand; 42 44 43 template <typename T> 45 template <typename T> 44 class G4VModelCommand : public G4UImessenger { 46 class G4VModelCommand : public G4UImessenger { 45 47 46 public: 48 public: 47 49 48 // Constructor 50 // Constructor 49 G4VModelCommand(T* model, const G4String& pl 51 G4VModelCommand(T* model, const G4String& placement=""); 50 52 51 // Destructor 53 // Destructor 52 virtual ~G4VModelCommand(); 54 virtual ~G4VModelCommand(); 53 55 54 // Methods 56 // Methods 55 G4String GetCurrentValue(G4UIcommand* comman 57 G4String GetCurrentValue(G4UIcommand* command); 56 G4String Placement(); 58 G4String Placement(); 57 59 58 protected: 60 protected: 59 61 60 // Access to model 62 // Access to model 61 T* Model(); 63 T* Model(); 62 64 63 private: 65 private: 64 66 65 // Data members 67 // Data members 66 T* fpModel; 68 T* fpModel; 67 G4String fPlacement; 69 G4String fPlacement; 68 }; 70 }; 69 71 70 template <typename T> 72 template <typename T> 71 G4VModelCommand<T>::G4VModelCommand(T* model, 73 G4VModelCommand<T>::G4VModelCommand(T* model, const G4String& placement) 72 :fpModel(model) 74 :fpModel(model) 73 ,fPlacement(placement) 75 ,fPlacement(placement) 74 {} 76 {} 75 77 76 template <typename T> 78 template <typename T> 77 G4VModelCommand<T>::~G4VModelCommand() {} 79 G4VModelCommand<T>::~G4VModelCommand() {} 78 80 79 template <typename T> 81 template <typename T> 80 G4String 82 G4String 81 G4VModelCommand<T>::GetCurrentValue(G4UIcomman 83 G4VModelCommand<T>::GetCurrentValue(G4UIcommand*) 82 { 84 { 83 return ""; 85 return ""; 84 } 86 } 85 87 86 template <typename T> 88 template <typename T> 87 T* 89 T* 88 G4VModelCommand<T>::Model() 90 G4VModelCommand<T>::Model() 89 { 91 { 90 return fpModel; 92 return fpModel; 91 } 93 } 92 94 93 template <typename T> 95 template <typename T> 94 G4String 96 G4String 95 G4VModelCommand<T>::Placement() 97 G4VModelCommand<T>::Placement() 96 { 98 { 97 return fPlacement; 99 return fPlacement; 98 } 100 } 99 101 100 #endif 102 #endif 101 103 102 104 103 105 104 106