ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G3toG4DetectorConstruction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G3toG4DetectorConstruction.cc
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 //
28 //
29 //
30 //
31 //--------------------------------------------------------------------------
32 // G3toG4DetectorConstruction. Most the work is Done in
33 // G4BuildGeom, which returns a G4LogicalVolume*, a pointer to the
34 // top-level logiical volume in the detector defined by the call List file
35 // inFile
36 //--------------------------------------------------------------------------
37 
38 #include "G4SystemOfUnits.hh"
39 #include "G4ios.hh"
41 #include "G4VisAttributes.hh"
42 #include "G4Colour.hh"
43 #include "G4Material.hh"
44 #include "G4Box.hh"
45 #include "G4SystemOfUnits.hh"
46 
47 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48 
51  fInFile(inFile)
52 {
53  G4cout << "Instantiated G3toG4DetectorConstruction using call list file \""
54  << fInFile << "\"" << G4endl;
55 }
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
60 {
61  // G4cout << "Deleted G3toG4DetectorConstruction..." << G4endl;
62 }
63 
64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65 
67 {
69  //G4LogicalVolume* lv = SimpleConstruct();
70  if ( lv ) {
72  = new G4PVPlacement(0, G4ThreeVector(), lv, lv->GetName(), 0, false, 0);
73  G4cout << "Top-level G3toG4 logical volume " << lv->GetName() << " "
74  << *(lv -> GetVisAttributes()) << G4endl;
75  return pv;
76  }
77 
78  G4cerr << "creation of logical mother failed !!!" << G4endl;
79  return 0;
80 }
81 
82 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
83 
85 {
86  G4String name, symbol; //a=mass of a mole;
87  G4double a, z, density, fractionmass; //z=mean number of protons;
88  G4int ncomponents; //iz=number of protons in an isotope;
89  // n=number of nucleons in an isotope;
90 
91  a = 14.01*g/mole;
92  G4Element* eN = new G4Element(name="Nitrogen",symbol="N" , z= 7., a);
93 
94  a = 16.00*g/mole;
95  G4Element* eO = new G4Element(name="Oxygen" ,symbol="O" , z= 8., a);
96 
97  //
98  // define a material from elements. case 2: mixture by fractional mass
99  //
100 
101  density = 1.290*mg/cm3;
102  G4Material* air = new G4Material(name="Air" , density, ncomponents=2);
103  air->AddElement(eN, fractionmass=0.7);
104  air->AddElement(eO, fractionmass=0.3);
105  G4VSolid* mother = new G4Box("TestMother", //its name
106  100*cm, 100*cm, 100*cm); //its size
107 
108  G4VSolid* daughter = new G4Box("TestDaughter", 50*cm, 20*cm, 10*cm);
109 
110  G4LogicalVolume* logicMother = new G4LogicalVolume(mother, //its solid
111  air, //its material
112  "LTestMother");//its name
113 
114  G4LogicalVolume* logicDaughter = new G4LogicalVolume(daughter, //its solid
115  air, //its material
116  "LTestDaughter");
117 
118  new G4PVPlacement(0,
119  G4ThreeVector(),
120  logicDaughter,
121  "PTestDaughter",
122  logicMother,
123  false,0);
124  //
125  // Visualization attributes
126  //
127 
129  G4VisAttributes* daughterVisAtt= new G4VisAttributes(G4Colour(1.0,1.0,1.0));
130  daughterVisAtt->SetVisibility(true);
131  logicDaughter->SetVisAttributes(daughterVisAtt);
132  return logicMother;
133 }
134 
135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......