Geant4-11
G4tgrPlaceSimple.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// G4tgrPlaceSimple implementation
27
28// Author: P.Arce, CIEMAT (November 2007)
29// --------------------------------------------------------------------
30
31#include "G4tgrPlaceSimple.hh"
32
33#include "G4SystemOfUnits.hh"
34#include "G4tgrUtils.hh"
35#include "G4tgrVolume.hh"
36#include "G4tgrMessenger.hh"
37
38// --------------------------------------------------------------------
40{
41}
42
43// --------------------------------------------------------------------
45{
46}
47
48// --------------------------------------------------------------------
49G4tgrPlaceSimple::G4tgrPlaceSimple(const std::vector<G4String>& wl)
50{
51 theType = "PlaceSimple";
52
53 G4int wl7 = -1;
54 if(wl.size() == 8) // for assembly volume placement,
55 { // there is no copy number
56 //---------- set the copy number
58 wl7 = 0;
59 }
60
61 //---------- set the parent name
63
64 //---------- set the position with respect to parent
66 G4tgrUtils::GetDouble(wl[6 + wl7]) * mm,
67 G4tgrUtils::GetDouble(wl[7 + wl7]) * mm);
68
69 //---------- set the rotation matrix name
71
72#ifdef G4VERBOSE
74 {
75 G4cout << " Created " << *this << G4endl;
76 }
77#endif
78}
79
80// --------------------------------------------------------------------
81std::ostream& operator<<(std::ostream& os, const G4tgrPlaceSimple& obj)
82{
83 os << "G4tgrPlaceSimple= in " << obj.theParentName
84 << " Position= " << obj.thePlace << " RotMatName= " << obj.theRotMatName
85 << G4endl;
86
87 return os;
88}
static constexpr double mm
Definition: G4SIunits.hh:95
CLHEP::Hep3Vector G4ThreeVector
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4int GetVerboseLevel()
G4ThreeVector thePlace
G4String theParentName
Definition: G4tgrPlace.hh:66
unsigned int theCopyNo
Definition: G4tgrPlace.hh:70
G4String theType
Definition: G4tgrPlace.hh:73
static G4String GetString(const G4String &str)
Definition: G4tgrUtils.cc:173
static G4int GetInt(const G4String &str)
Definition: G4tgrUtils.cc:447
static G4double GetDouble(const G4String &str, G4double unitval=1.)
Definition: G4tgrUtils.cc:198
std::ostream & operator<<(std::ostream &, const BasicVector3D< float > &)