BOSS 7.1.1
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
9#ifndef ExtBesDetectorConstruction_H
10#define ExtBesDetectorConstruction_H
11
12#include "G4String.hh"
13#include "G4VUserDetectorConstruction.hh"
14#include "G4VPhysicalVolume.hh"
15
20
22//#include "ReadBoostRoot.hh"
23
24class ExtBesDetectorConstruction : public G4VUserDetectorConstruction
25{
26 public:
27 ExtBesDetectorConstruction(const bool bFieldOn,int tofversion);
29 G4VPhysicalVolume* Construct();
30
31
32 private:
33 G4VPhysicalVolume* fWorld;
34 ExtBesMagneticField* besField;
37
38
41 int m_detVer;
42};
43
44#endif
ExtBesDetectorConstruction(const bool bFieldOn, int tofversion)