VMC Examples Version 6.6
Loading...
Searching...
No Matches
DetectorConstruction.h
Go to the documentation of this file.
1#ifndef DETECTOR_CONSTRUCTION_H
2#define DETECTOR_CONSTRUCTION_H
3
4//------------------------------------------------
5// The Virtual Monte Carlo examples
6// Copyright (C) 2007 - 2015 Ivana Hrivnacova
7// All rights reserved.
8//
9// For the licensing terms see geant4_vmc/LICENSE.
10// Contact: root-vmc@cern.ch
11//-------------------------------------------------
12
13/// \file TR/include/DetectorConstruction.h
14/// \brief Definition of the DetectorConstruction class
15///
16/// Geant4 TestEm10 adapted to Virtual Monte Carlo.
17/// Only DetectorSimpleALICE is defined.
18///
19/// \author I. Hrivnacova; IPN, Orsay
20
21#include <TObject.h>
22
23namespace VMC
24{
25namespace TR
26{
27
28// struct RadiatorDescription;
29
30/// \ingroup TR
31/// \brief The detector construction (via TGeo )
32///
33/// \date 18/12/2015
34/// \author I. Hrivnacova; IPN, Orsay
35
37{
38 public:
40 virtual ~DetectorConstruction();
41
42 // methods
43 void ConstructGeometry();
44
45 ClassDef(DetectorConstruction, 1) // DetectorConstruction
46};
47
48} // namespace TR
49} // namespace VMC
50
51#endif // DETECTOR_CONSTRUCTION_H
The detector construction (via TGeo )