Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file g3tog4/clGeometry/src/G3toG4Detector << 27 /// \brief Implementation of the G3toG4Detecto << 28 // << 29 // 26 // >> 27 // $Id: G3toG4DetectorConstruction.cc,v 1.5 2006/06/29 17:20:15 gunter Exp $ >> 28 // GEANT4 tag $Name: geant4-08-03-patch-01 $ 30 // 29 // 31 //-------------------------------------------- 30 //-------------------------------------------------------------------------- 32 // G3toG4DetectorConstruction. Most the work i 31 // G3toG4DetectorConstruction. Most the work is Done in 33 // G4BuildGeom, which returns a G4LogicalVolum 32 // G4BuildGeom, which returns a G4LogicalVolume*, a pointer to the 34 // top-level logiical volume in the detector d 33 // top-level logiical volume in the detector defined by the call List file 35 // inFile 34 // inFile 36 //-------------------------------------------- 35 //-------------------------------------------------------------------------- 37 36 >> 37 #include "G4ios.hh" 38 #include "G3toG4DetectorConstruction.hh" 38 #include "G3toG4DetectorConstruction.hh" 39 << 39 #include "G4VisAttributes.hh" 40 #include "G4Box.hh" << 41 #include "G4Colour.hh" 40 #include "G4Colour.hh" 42 #include "G4Material.hh" 41 #include "G4Material.hh" 43 #include "G4SystemOfUnits.hh" << 42 #include "G4Box.hh" 44 #include "G4VisAttributes.hh" << 45 #include "G4ios.hh" << 46 << 47 //....oooOO0OOooo........oooOO0OOooo........oo << 48 43 49 G3toG4DetectorConstruction::G3toG4DetectorCons << 44 G3toG4DetectorConstruction::G3toG4DetectorConstruction(G4String inFile){ 50 : G4VUserDetectorConstruction(), fInFile(inF << 45 _inFile = inFile; 51 { << 46 G4cout << "Instantiated G3toG4DetectorConstruction using call list file \"" 52 G4cout << "Instantiated G3toG4DetectorConstr << 47 << _inFile << "\"" << G4endl; 53 << G4endl; << 54 } 48 } 55 49 56 //....oooOO0OOooo........oooOO0OOooo........oo << 50 G3toG4DetectorConstruction::~G3toG4DetectorConstruction(){ 57 << 51 // G4cout << "Deleted G3toG4DetectorConstruction..." << G4endl; 58 G3toG4DetectorConstruction::~G3toG4DetectorCon << 59 { << 60 // G4cout << "Deleted G3toG4DetectorConstruc << 61 } 52 } 62 53 63 //....oooOO0OOooo........oooOO0OOooo........oo << 54 G4VPhysicalVolume* 64 << 55 G3toG4DetectorConstruction::Construct(){ 65 G4VPhysicalVolume* G3toG4DetectorConstruction: << 56 _lv = G4BuildGeom(_inFile); 66 { << 57 //_lv = SimpleConstruct(); 67 G4LogicalVolume* lv = G4BuildGeom(fInFile); << 58 if (_lv != 0) { 68 // G4LogicalVolume* lv = SimpleConstruct(); << 59 _pv = new G4PVPlacement(0, G4ThreeVector(), _lv, _lv->GetName(), 0, 69 if (lv) { << 60 false, 0); 70 G4VPhysicalVolume* pv = new G4PVPlacement( << 61 G4cout << "Top-level G3toG4 logical volume " << _lv->GetName() << " " 71 G4cout << "Top-level G3toG4 logical volume << 62 << *(_lv -> GetVisAttributes()) << G4endl; 72 << *(lv->GetVisAttributes()) << G4e << 63 } else 73 return pv; << 64 G4cerr << "creation of logical mother failed !!!" << G4endl; 74 } << 65 return _pv; 75 << 76 G4cerr << "creation of logical mother failed << 77 return 0; << 78 } 66 } 79 << 67 G4LogicalVolume* 80 //....oooOO0OOooo........oooOO0OOooo........oo << 68 G3toG4DetectorConstruction::SimpleConstruct(){ 81 << 69 G4String name, symbol; //a=mass of a mole; 82 G4LogicalVolume* G3toG4DetectorConstruction::S << 70 G4double a, z, density, fractionmass; //z=mean number of protons; 83 { << 71 G4int ncomponents; //iz=number of protons in an isotope; 84 G4String name, symbol; // a=mass of a mole; << 85 G4double a, z, density, fractionmass; // z= << 86 G4int ncomponents; // iz=number of protons << 87 // n=number of nucleons in an isotope; 72 // n=number of nucleons in an isotope; 88 73 89 a = 14.01 * g / mole; << 74 a = 14.01*g/mole; 90 G4Element* eN = new G4Element(name = "Nitrog << 75 G4Element* N = new G4Element(name="Nitrogen",symbol="N" , z= 7., a); 91 76 92 a = 16.00 * g / mole; << 77 a = 16.00*g/mole; 93 G4Element* eO = new G4Element(name = "Oxygen << 78 G4Element* O = new G4Element(name="Oxygen" ,symbol="O" , z= 8., a); 94 79 95 // 80 // 96 // define a material from elements. case 2 81 // define a material from elements. case 2: mixture by fractional mass 97 // 82 // 98 83 99 density = 1.290 * mg / cm3; << 84 density = 1.290*mg/cm3; 100 G4Material* air = new G4Material(name = "Air << 85 G4Material* Air = new G4Material(name="Air" , density, ncomponents=2); 101 air->AddElement(eN, fractionmass = 0.7); << 86 Air->AddElement(N, fractionmass=0.7); 102 air->AddElement(eO, fractionmass = 0.3); << 87 Air->AddElement(O, fractionmass=0.3); 103 G4VSolid* mother = new G4Box("TestMother", << 88 G4VSolid* Mother = new G4Box("TestMother", //its name 104 100 * cm, 100 * << 89 100*cm, 100*cm, 100*cm); //its size 105 << 90 106 G4VSolid* daughter = new G4Box("TestDaughter << 91 G4VSolid* Daughter = new G4Box("TestDaughter", 50*cm, 20*cm, 10*cm); 107 << 92 108 G4LogicalVolume* logicMother = new G4Logical << 93 G4LogicalVolume* logicMother = new G4LogicalVolume(Mother, //its solid 109 << 94 Air, //its material 110 << 95 "LTestMother");//its name 111 << 96 112 G4LogicalVolume* logicDaughter = new G4Logic << 97 G4LogicalVolume* logicDaughter = new G4LogicalVolume(Daughter, //its solid 113 << 98 Air, //its material 114 << 99 "LTestDaughter"); 115 << 100 116 new G4PVPlacement(0, G4ThreeVector(), logicD << 101 // G4VPhysicalVolume* physiDaughter = >> 102 new G4PVPlacement(0, >> 103 G4ThreeVector(), >> 104 logicDaughter, >> 105 "PTestDaughter", >> 106 logicMother, >> 107 false,0); 117 // 108 // 118 // Visualization attributes 109 // Visualization attributes 119 // 110 // 120 111 121 logicMother->SetVisAttributes(G4VisAttribute << 112 logicMother->SetVisAttributes (G4VisAttributes::Invisible); 122 G4VisAttributes* daughterVisAtt = new G4VisA << 113 G4VisAttributes* DaughterVisAtt= new G4VisAttributes(G4Colour(1.0,1.0,1.0)); 123 daughterVisAtt->SetVisibility(true); << 114 DaughterVisAtt->SetVisibility(true); 124 logicDaughter->SetVisAttributes(daughterVisA << 115 logicDaughter->SetVisAttributes(DaughterVisAtt); 125 return logicMother; 116 return logicMother; 126 } 117 } 127 118 128 //....oooOO0OOooo........oooOO0OOooo........oo << 119 >> 120 >> 121 >> 122 >> 123 >> 124 >> 125 >> 126 >> 127 129 128