BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
BesG4Geo.cxx
Go to the documentation of this file.
1//$id$
2
3/*
4 * 2007/05/28 Deng Ziyan
5 * Bes Geometry General for Simulation
6 * inherit from class SubDetectorG4Geo
7 */
8
9using namespace std;
10
11#include <iomanip>
12#include <iostream>
13#include <sstream>
14#include <string>
15#include <vector>
16
17#include "G4Geo/BesG4Geo.h"
18#include "SimUtil/ReadBoostRoot.hh"
19
21 string GdmlManagementPath = getenv( "GDMLMANAGEMENTDATAROOT" );
22 if ( GdmlManagementPath == "" ) cout << "BesG4Geo::GdmlManagementPath not set" << endl;
23 string GdmlFile = GdmlManagementPath + string( "/dat/Bes.gdml" );
24 cout << "Construct Bes from GdmlFile " << GdmlFile << endl;
25 InitFromGdml( GdmlFile.c_str(), "Default" );
26}
27
29
30void BesG4Geo::InitFromGdml( const char* gdmlFile, const char* setupName ) {
31 ReadGdml( gdmlFile, setupName );
32 m_TopVolume = GetLogicalVolume( "logicalWorld" );
33 if ( !m_TopVolume ) cout << "BesG4Geo::InitFromGdml, m_TopVolume not found" << endl;
34 else cout << "Bes TopVolume name " << m_TopVolume->GetName() << endl;
36
37 m_G4GeoInit = 1;
38}
39
~BesG4Geo()
Destructor.
Definition BesG4Geo.cxx:28
void InitFromGdml(const char *gdmlFile, const char *setupName)
Initialize the instance of G4Geo.
Definition BesG4Geo.cxx:30
BesG4Geo()
Constructor.
Definition BesG4Geo.cxx:20
void SetDefaultVis()
Set default visual attributes;.
Definition BesG4Geo.cxx:40
void ReadGdml(const char *gdmlFile, const char *setupName)
Initialize the instance of G4Geo.
G4LogicalVolume * GetLogicalVolume(const std::string &vn)
Get a logical volume by name;.