BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
ExtBesDetectorConstruction.h
Go to the documentation of this file.
1//
2// File: ExtBesDetectorConstruction.h
3// Author: L.L.Wang
4// Description: Constuction of BESIII detector using package GdmlToG4.
5// History: 2005.8.5 created by L.L.Wang
6//
7
8#ifndef ExtBesDetectorConstruction_H
9#define ExtBesDetectorConstruction_H
10
11#include "G4String.hh"
12#include "G4VPhysicalVolume.hh"
13#include "G4VUserDetectorConstruction.hh"
14
19
20#include "ExtBesMagneticField.h"
21// #include "ReadBoostRoot.hh"
22
23class ExtBesDetectorConstruction : public G4VUserDetectorConstruction {
24public:
25 ExtBesDetectorConstruction( const bool bFieldOn, int tofversion );
27 G4VPhysicalVolume* Construct();
28
29private:
30 G4VPhysicalVolume* fWorld;
31 ExtBesMagneticField* besField;
34
37 int m_detVer;
38};
39
40#endif
ExtBesDetectorConstruction(const bool bFieldOn, int tofversion)