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.3 2006/06/29 21:32:27 gunter Exp $ >> 27 // GEANT4 tag $Name: geant4-08-01-patch-01 $ 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: // With description 47 49 48 // Constructor << 50 G4VModelCommand(T* model); 49 G4VModelCommand(T* model, const G4String& pl << 51 // Input model 50 52 51 // Destructor << 52 virtual ~G4VModelCommand(); 53 virtual ~G4VModelCommand(); 53 54 54 // Methods << 55 G4String GetCurrentValue(G4UIcommand* comman 55 G4String GetCurrentValue(G4UIcommand* command); 56 G4String Placement(); << 57 56 58 protected: 57 protected: 59 58 60 // Access to model << 61 T* Model(); 59 T* Model(); >> 60 // Access to model 62 61 63 private: 62 private: 64 63 65 // Data members << 66 T* fpModel; 64 T* fpModel; 67 G4String fPlacement; << 65 68 }; 66 }; 69 67 70 template <typename T> 68 template <typename T> 71 G4VModelCommand<T>::G4VModelCommand(T* model, << 69 G4VModelCommand<T>::G4VModelCommand(T* model) 72 :fpModel(model) 70 :fpModel(model) 73 ,fPlacement(placement) << 74 {} 71 {} 75 72 76 template <typename T> 73 template <typename T> 77 G4VModelCommand<T>::~G4VModelCommand() {} 74 G4VModelCommand<T>::~G4VModelCommand() {} 78 75 79 template <typename T> 76 template <typename T> 80 G4String 77 G4String 81 G4VModelCommand<T>::GetCurrentValue(G4UIcomman 78 G4VModelCommand<T>::GetCurrentValue(G4UIcommand*) 82 { 79 { 83 return ""; 80 return ""; 84 } 81 } 85 82 86 template <typename T> 83 template <typename T> 87 T* 84 T* 88 G4VModelCommand<T>::Model() 85 G4VModelCommand<T>::Model() 89 { 86 { 90 return fpModel; 87 return fpModel; 91 } << 92 << 93 template <typename T> << 94 G4String << 95 G4VModelCommand<T>::Placement() << 96 { << 97 return fPlacement; << 98 } 88 } 99 89 100 #endif 90 #endif 101 91 102 92 103 93 104 94