00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // 00027 // $Id: G4tgbDetectorConstruction.cc 69803 2013-05-15 15:24:50Z gcosmo $ 00028 // 00029 // 00030 // class G4tgbDetectorConstruction 00031 00032 // History: 00033 // - Created. P.Arce, CIEMAT (November 2007) 00034 // ------------------------------------------------------------------------- 00035 00036 #include "G4tgbDetectorConstruction.hh" 00037 #include "G4tgbVolume.hh" 00038 #include "G4tgbVolumeMgr.hh" 00039 00040 #include "G4tgrVolume.hh" 00041 #include "G4tgrVolumeMgr.hh" 00042 #include "G4tgrMessenger.hh" 00043 00044 #include "G4Material.hh" 00045 #include "G4Box.hh" 00046 #include "G4Tubs.hh" 00047 #include "G4LogicalVolume.hh" 00048 #include "G4ThreeVector.hh" 00049 #include "G4PVPlacement.hh" 00050 00051 //--------------------------------------------------------------------- 00052 G4tgbDetectorConstruction::G4tgbDetectorConstruction() 00053 {;} 00054 00055 //--------------------------------------------------------------------- 00056 G4tgbDetectorConstruction::~G4tgbDetectorConstruction() 00057 {;} 00058 00059 //--------------------------------------------------------------------- 00060 G4VPhysicalVolume* G4tgbDetectorConstruction::Construct() 00061 { 00062 //------------------- construct g4 geometry 00063 //---------- find top G4tgrVolume 00064 G4tgrVolumeMgr* tgrVolmgr = G4tgrVolumeMgr::GetInstance(); 00065 const G4tgrVolume* tgrVoltop = tgrVolmgr->GetTopVolume(); 00066 00067 //---------- copy list of G4tgrVolume's to list of G4tgbVolume's 00068 // (just a trick to make all GEANT4 volume building in this class) 00069 G4tgbVolumeMgr* tgbVolmgr = G4tgbVolumeMgr::GetInstance(); 00070 tgbVolmgr->CopyVolumes(); 00071 //---------- find corresponding volume in list of G4tgbVolume's 00072 G4tgbVolume* tgbVoltop = tgbVolmgr->FindVolume( tgrVoltop->GetName() ); 00073 00074 //---------- ConstructG4Volumes of top G4tgbVolume 00075 // (it will recursively build the whole tree) 00076 tgbVoltop->ConstructG4Volumes( 0, (const G4LogicalVolume*)0 ); 00077 00078 00079 G4VPhysicalVolume* physvol = (G4tgbVolumeMgr::GetInstance())->GetTopPhysVol(); 00080 00081 #ifdef G4VERBOSE 00082 if( G4tgrMessenger::GetVerboseLevel() >= 1 ) 00083 { 00084 G4cout << " G4tgbDetectorConstruction::Construct() - Volume: " 00085 << physvol->GetName() << G4endl; 00086 } 00087 #endif 00088 00089 return physvol; 00090 }