VMC Examples Version 6.6
Loading...
Searching...
No Matches
Ex01DetectorConstructionOld.h
Go to the documentation of this file.
1#ifndef EX01_DETECTOR_CONSTRUCTION_OLD_H
2#define EX01_DETECTOR_CONSTRUCTION_OLD_H
3
4//------------------------------------------------
5// The Virtual Monte Carlo examples
6// Copyright (C) 2007 - 2014 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 Ex01DetectorConstructionOld.h
14/// \brief Definition of the Ex01DetectorConstructionOld class
15///
16/// Geant4 ExampleN01 adapted to Virtual Monte Carlo \n
17/// Id: ExN02DetectorConstruction.hh,v 1.7 2002/01/09 17:24:09 ranjard Exp \n
18/// GEANT4 tag Name: geant4-04-00-patch-02
19///
20/// \author I. Hrivnacova; IPN, Orsay
21
22#include <TObject.h>
23#include <TString.h>
24
25/// \ingroup E01
26/// \brief The old (deprecated) detector construction class
27///
28/// Geometry definition via VMC (for testing purposes only).
29/// The recomended way of geometry definition is using TGeo
30/// geometry modeller.
31///
32/// \date 21/04/2002
33/// Separated from Ex01MCAopplication, 08/12/2006
34///
35/// \author I. Hrivnacova; IPN, Orsay
36
38{
39 public:
42
43 // methods
44 void ConstructMaterials();
45 void ConstructVolumes();
46
47 private:
48 // data members
49 Int_t fImedAr; ///< The Argon medium Id
50 Int_t fImedAl; ///< The Aluminium medium Id
51 Int_t fImedPb; ///< The Lead medium Id
52
53 ClassDef(Ex01DetectorConstructionOld, 1) // Ex01DetectorConstructionOld
54};
55
56#endif // EX01_DETECTOR_CONSTRUCTION_OLD_H
The old (deprecated) detector construction class.
Int_t fImedAl
The Aluminium medium Id.