Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4tgrUtils.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id$
28//
29//
30// class G4tgrUtils
31//
32// Class description:
33//
34// Utility class for managing of strings.
35
36// History:
37// - Created. P.Arce, CIEMAT (November 2007)
38// -------------------------------------------------------------------------
39
40#ifndef G4tgrUtils_h
41#define G4tgrUtils_h
42
43#include "globals.hh"
44
45#include <iostream>
46#include <vector>
47
48#include "G4ThreeVector.hh"
49#include "G4RotationMatrix.hh"
50#include "G4tgrEvaluator.hh"
51
53
55{
56 public: // with description
57
58 G4tgrUtils();
60
61 static G4bool IsSeparator(char);
62 static G4bool IsNumber( const G4String& str);
63 static G4bool IsInteger( const G4double val,
64 const G4double precision = 1.e-6 );
65 static G4bool IsFunction( const G4String& word );
66 // Checks that every character in a G4String is a number
67 // (also '.' or exponencial notation: 'E')
68 static G4bool WordIsUnit( const G4String& word );
69
70 static void Dump3v( const G4ThreeVector& vec, const char* msg);
71 // Dumps a three-vector with a message
72 static void Dumprm( const G4RotationMatrix& rm, const char* msg);
73 // Dumps a rotation matrix with a message
74 static void DumpVS( const std::vector<G4String>& wl , const char* msg);
75 // Dumps a vector of G4Strings with a message to cout
76 static void DumpVS( const std::vector<G4String>& wl , const char* msg,
77 std::ostream& outs) ;
78 // Dumps a vector of G4Strings with a message to outs
79 static void CheckWLsize( const std::vector<G4String>& wl,
80 unsigned int nWCheck, WLSIZEtype st,
81 const G4String& methodName );
82 static G4bool CheckListSize( unsigned int nWreal,
83 unsigned int nWcheck, WLSIZEtype st,
84 G4String& outstr );
85
86 static G4String SubColon( const G4String& str );
87 // Return the str without leading ':'
88
89 static G4String GetString( const G4String& str );
90 // Return the str without leading and trailing '"' and ' '
91
92 static G4double GetDouble( const G4String& str, G4double unitval = 1. );
93 // Convert a G4String to a double, checking that it is really a number
94 static G4int GetInt( const G4String& str );
95 // Convert a G4String to an integer, checking that it is really an int
96 static G4bool GetBool( const G4String& str );
97 // Convert a bool to an integer, checking that it is really a bool
98
100
101 static G4bool AreWordsEquivalent( const G4String& word1,
102 const G4String& word2 );
103 // Looks if word1 and word2 are equivalent, considering that
104 // word1 may have '*', meaning 'any character'
105
106 private:
107
108 static G4tgrEvaluator* theEvaluator;
109};
110
111#endif
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
WLSIZEtype
Definition: G4tgrUtils.hh:52
@ WLSIZE_NE
Definition: G4tgrUtils.hh:52
@ WLSIZE_EQ
Definition: G4tgrUtils.hh:52
@ WLSIZE_GE
Definition: G4tgrUtils.hh:52
@ WLSIZE_LT
Definition: G4tgrUtils.hh:52
@ WLSIZE_LE
Definition: G4tgrUtils.hh:52
@ WLSIZE_GT
Definition: G4tgrUtils.hh:52
static G4bool IsNumber(const G4String &str)
Definition: G4tgrUtils.cc:79
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:178
static G4bool IsSeparator(char)
Definition: G4tgrUtils.cc:64
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:472
static void DumpVS(const std::vector< G4String > &wl, const char *msg)
Definition: G4tgrUtils.cc:156
static G4bool IsInteger(const G4double val, const G4double precision=1.e-6)
Definition: G4tgrUtils.cc:110
static G4bool GetBool(const G4String &str)
Definition: G4tgrUtils.cc:445
static void Dumprm(const G4RotationMatrix &rm, const char *msg)
Definition: G4tgrUtils.cc:132
static G4bool CheckListSize(unsigned int nWreal, unsigned int nWcheck, WLSIZEtype st, G4String &outstr)
Definition: G4tgrUtils.cc:495
static void Dump3v(const G4ThreeVector &vec, const char *msg)
Definition: G4tgrUtils.cc:124
static G4bool IsFunction(const G4String &word)
Definition: G4tgrUtils.cc:593
static G4int GetInt(const G4String &str)
Definition: G4tgrUtils.cc:427
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:203
static G4RotationMatrix GetRotationFromDirection(G4ThreeVector dir)
Definition: G4tgrUtils.cc:624
static G4String SubColon(const G4String &str)
Definition: G4tgrUtils.cc:163
static G4bool WordIsUnit(const G4String &word)
Definition: G4tgrUtils.cc:554
static G4bool AreWordsEquivalent(const G4String &word1, const G4String &word2)
Definition: G4tgrUtils.cc:670