Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4UIcmdWithADoubleAndUnit << 27 // 23 // 28 // Class description: << 24 // $Id: G4UIcmdWithADoubleAndUnit.hh,v 1.5 2002/04/26 22:03:35 asaim Exp $ >> 25 // GEANT4 tag $Name: geant4-05-00 $ >> 26 // 29 // 27 // 30 // A concrete class of G4UIcommand. The comman << 31 // takes a double value and a unit string. << 32 // General information of G4UIcommand is given << 33 28 34 // Author: M.Asai, 1998 << 29 #ifndef G4UIcmdWithADoubleAndUnit_H 35 // ------------------------------------------- << 30 #define G4UIcmdWithADoubleAndUnit_H 1 36 #ifndef G4UIcmdWithADoubleAndUnit_hh << 37 #define G4UIcmdWithADoubleAndUnit_hh 1 << 38 31 39 #include "G4UIcommand.hh" 32 #include "G4UIcommand.hh" 40 33 >> 34 // class description: >> 35 // A concrete class of G4UIcommand. The command defined by this class >> 36 // takes a double value and a unit string. >> 37 // General information of G4UIcommand is given in G4UIcommand.hh. >> 38 41 class G4UIcmdWithADoubleAndUnit : public G4UIc 39 class G4UIcmdWithADoubleAndUnit : public G4UIcommand 42 { 40 { 43 public: << 41 public: // with description 44 // Constructor. The command string with fu << 42 G4UIcmdWithADoubleAndUnit 45 // and the pointer to the messenger must b << 43 (const char * theCommandPath,G4UImessenger * theMessenger); 46 G4UIcmdWithADoubleAndUnit(const char* theC << 44 // Constructor. The command string with full path directory 47 << 45 // and the pointer to the messenger must be given. 48 G4int DoIt(const G4String& parameterList) << 46 G4double GetNewDoubleValue(const char* paramString); 49 << 47 // Convert string which represents a double value and a unit to 50 // Convert a double value to a string of d << 48 // double. Value is converted to the Geant4 internal unit. 51 // chosen from the unit category of defaul << 49 G4double GetNewDoubleRawValue(const char* paramString); 52 // is defined) or category defined by SetU << 50 // Convert string which represents a double value and a unit to 53 G4String ConvertToStringWithBestUnit(G4dou << 51 // double. Value is NOT converted to the Geant4 internal unit 54 << 52 // but just as the given string. 55 // Convert a double value to a string of d << 53 G4double GetNewUnitValue(const char* paramString); 56 // chosen from the category defined by Set << 54 // Convert the unit string to the value of the unit. "paramString" 57 // unit is not defined << 55 // must contain a double value AND a unit string. 58 G4String ConvertToStringWithDefaultUnit(G4 << 56 G4String ConvertToString(G4double dblValue,const char * unitName); 59 << 57 // Convert a double value and the unit to a string which represents a 60 // Set the parameter name for double param << 58 // double value and the unit. This method must be used by the messenger 61 // the range checking function. << 59 // for its GetCurrentValues() method. Value of the double will be 62 // If "omittable" is set as true, the user << 60 // devided by the value of the unit. 63 // the value when the command is applied. << 61 void SetParameterName(const char * theName,G4bool omittable, >> 62 G4bool currentAsDefault=false); >> 63 // Set the parameter name for double parameterxs. Name is used by >> 64 // the range checking routine. >> 65 // If "omittable" is set as true, the user of this command can ommit >> 66 // the value when he/she applies the command. If "omittable" is false, 64 // the user must supply a value. 67 // the user must supply a value. 65 // "currentAsDefault" flag is valid only i << 68 // "currentAsDefault" flag is valid only if "omittable" is true. If this 66 // flag is true, the current value is used << 69 // flag is true, the current value is used as the default value when the 67 // user omits the double parameter. If thi << 70 // user ommit the double parameter. If this flag is false, the value 68 // given by the next SetDefaultValue() met << 71 // given by the next SetDefaultValue() method is used. 69 void SetParameterName(const char* theName, << 70 << 71 // Set the default value of the parameter. << 72 // when the user of this command omits the << 73 // "omittable" is true and "currentAsDefau << 74 void SetDefaultValue(G4double defVal); 72 void SetDefaultValue(G4double defVal); 75 << 73 // Set the default value of the parameter. This default value is used 76 // These three methods must be used altern << 74 // when the user of this command ommits the parameter value, and 77 // The user cannot omit the unit as the se << 75 // "ommitable" is true and "curreutAsDefault" is false. 78 // if SetUnitCategory() or SetUnitCandidat << 76 void SetUnitCategory(const char * unitCategory); 79 // defined by SetDefaultUnit() method is u << 77 void SetUnitCandidates(const char * candidateList); 80 // the user can omit the second parameter. << 78 void SetDefaultUnit(const char * defUnit); 81 // SetUnitCategory() defines the category << 79 // These three methods must be used alternatively. 82 // accepted. << 80 // The user cannot ommit the unit as the second parameter of the command if 83 // The available categories can be found i << 81 // SetUnitCategory() or SetUnitCandidates() is used, while the unit defined 84 // category. Only the units categorized in << 82 // by SetDefaultUnit() method is used as the default unit so that the user can 85 // as the second parameter of the command. << 83 // ommits the second parameter. 86 // SetUnitCandidates() defines the candida << 84 // SetUnitCategory() defines the category of the units which will be accepted. 87 // the argument of this method must be sep << 85 // The available categories can be found in G4SystemOfUnits.hh in global category. 88 // units listed in the candidate list are << 86 // Only the units categorized in the given category are accepted as the second 89 // of the command. << 87 // parameter of the command. 90 // SetDefaultUnit() defines the default un << 88 // SetUnitCandidates() defines the candidates of units. Units listed in the 91 // of the allowed units. Thus only the uni << 89 // argument of this method must be separated by space(s). Only the units listed 92 // default unit will be accepted << 90 // in the candidate list are accepted as the second parameter of the command. 93 void SetUnitCategory(const char* unitCateg << 91 // SetDefaultUnit() defines the default unit and also it defines the category 94 void SetUnitCandidates(const char* candida << 92 // of the allowed units. Thus only the units categorized as the given default 95 void SetDefaultUnit(const char* defUnit); << 93 // unit will be accepted. 96 << 97 // Convert string which represents a doubl << 98 // double. Value is converted to the Geant << 99 static G4double GetNewDoubleValue(const ch << 100 << 101 // Convert string which represents a doubl << 102 // double. Value is NOT converted to the G << 103 // but just as the given string << 104 static G4double GetNewDoubleRawValue(const << 105 << 106 // Convert the unit string to the value of << 107 // must contain a double value AND a unit << 108 static G4double GetNewUnitValue(const char << 109 }; 94 }; 110 95 111 #endif 96 #endif 112 97