Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4tgrPlaceDivRep.cc
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// G4tgrPlaceDivRep implementation
27//
28// Author: P.Arce, CIEMAT (November 2007)
29// --------------------------------------------------------------------
30
31#include "G4tgrPlaceDivRep.hh"
32
33#include "G4SystemOfUnits.hh"
34#include "G4tgrUtils.hh"
35#include "G4tgrMessenger.hh"
36#include "G4tgrVolume.hh"
37
38// --------------------------------------------------------------------
40{
41}
42
43// --------------------------------------------------------------------
45{
46}
47
48// --------------------------------------------------------------------
49G4tgrPlaceDivRep::G4tgrPlaceDivRep(const std::vector<G4String>& wl)
50{
51 theDivType = DivByNdivAndWidth;
52
53 // Name parent axis nrep width offset
55 "G4tgrPlaceDivRep::G4tgrPlaceDivRep");
57 "G4tgrPlaceDivRep::G4tgrPlaceDivRep");
58
60 theAxis = BuildAxis(G4tgrUtils::GetString(wl[3]));
61 theNDiv = G4tgrUtils::GetInt(wl[4]);
62 theWidth = G4tgrUtils::GetDouble(wl[5]) * mm; // check if it is deg
63 if(wl.size() == 7)
64 {
65 theOffset = G4tgrUtils::GetDouble(wl[6]) * mm; // check if it is deg
66 }
67 else
68 {
69 theOffset = 0.;
70 }
71
72#ifdef G4VERBOSE
74 {
75 G4cout << " Created " << *this << G4endl;
76 }
77#endif
78}
79
80// --------------------------------------------------------------------
82{
83 if(axisName == "X")
84 {
85 return kXAxis;
86 }
87 else if(axisName == "Y")
88 {
89 return kYAxis;
90 }
91 else if(axisName == "Z")
92 {
93 return kZAxis;
94 }
95 else if(axisName == "R")
96 {
97 return kRho;
98 }
99 else if(axisName == "PHI")
100 {
101 return kPhi;
102 }
103 else
104 {
105 G4String ErrMessage = "Axis type not found: " + axisName +
106 ". Only valid axis are: X, Y, Z, R, PHI !";
107 G4Exception("G4tgrVolumeDivision::GetReplicaAxis()", "InvalidAxis",
108 FatalException, ErrMessage);
109 }
110 return kXAxis; // to avoid warning errors
111}
112
113// --------------------------------------------------------------------
114std::ostream& operator<<(std::ostream& os, const G4tgrPlaceDivRep& obj)
115{
116 os << "G4tgrPlaceDivRep= in " << obj.theParentName << " NDiv= " << obj.theNDiv
117 << " Width= " << obj.theWidth << " Axis= " << obj.theAxis
118 << " Offset= " << obj.theOffset << " DivType= " << obj.theDivType
119 << G4endl;
120
121 return os;
122}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:59
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
std::ostream & operator<<(std::ostream &os, const G4tgrPlaceDivRep &obj)
@ DivByNdivAndWidth
@ WLSIZE_GE
Definition: G4tgrUtils.hh:51
@ WLSIZE_LE
Definition: G4tgrUtils.hh:49
static G4int GetVerboseLevel()
EAxis BuildAxis(const G4String &axisName)
G4String theParentName
Definition: G4tgrPlace.hh:66
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:173
static void CheckWLsize(const std::vector< G4String > &wl, unsigned int nWCheck, WLSIZEtype st, const G4String &methodName)
Definition: G4tgrUtils.cc:490
static G4int GetInt(const G4String &str)
Definition: G4tgrUtils.cc:447
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:198
EAxis
Definition: geomdefs.hh:54
@ kPhi
Definition: geomdefs.hh:60
@ kYAxis
Definition: geomdefs.hh:56
@ kXAxis
Definition: geomdefs.hh:55
@ kZAxis
Definition: geomdefs.hh:57
@ kRho
Definition: geomdefs.hh:58