]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDGeoOldSimulator.h
Code fixed
[u/mrichter/AliRoot.git] / FMD / AliFMDGeoOldSimulator.h
CommitLineData
4ac75127 1#ifndef ALIFMDGEOOLDSIMULATOR_H
2#define ALIFMDGEOOLDSIMULATOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights
4 * reserved.
5 *
6 * Latest changes by Christian Holm Christensen <cholm@nbi.dk>
7 *
8 * See cxx source for full Copyright notice
9 */
10#ifndef ALIFMDGEOSIMULATOR
11# include <AliFMDGeoSimulator.h>
12#endif
13class AliFMD;
14class AliFMDRing;
15class AliFMDDetector;
16class AliFMD1;
17class AliFMD2;
18class AliFMD3;
19
20//____________________________________________________________________
21class AliFMDGeoOldSimulator : public AliFMDGeoSimulator
22{
23public:
24 AliFMDGeoOldSimulator();
25 /** CTOR */
26 AliFMDGeoOldSimulator(AliFMD* fmd, Bool_t detailed=kTRUE);
27 virtual ~AliFMDGeoOldSimulator() {}
28 virtual void UseDivided(Bool_t) { fUseDivided = kTRUE; }
29protected:
30 /** Make a ring volume
31 @param r Ring geometry
32 @return Ring volume */
33 TGeoVolume* RingGeometry(AliFMDRing* r);
34 ClassDef(AliFMDGeoOldSimulator,1);
35};
36
37
38#endif
39//____________________________________________________________________
40//
41// Local Variables:
42// mode: C++
43// End:
44//
45// EOF
46//
47