]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STRUCT/AliFRAME.h
Update master to aliroot
[u/mrichter/AliRoot.git] / STRUCT / AliFRAME.h
... / ...
CommitLineData
1#ifndef ALIFRAME_H
2#define ALIFRAME_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8////////////////////////////////////////////////
9// Manager class for detector: FRAME //
10////////////////////////////////////////////////
11
12#include "AliModule.h"
13
14
15class AliFRAME : public AliModule {
16
17public:
18 AliFRAME();
19 AliFRAME(const char *name, const char *title);
20 virtual ~AliFRAME() {}
21 virtual void Init() {}
22 virtual Int_t IsVersion() const =0;
23 protected:
24 Int_t fRefVolumeId1; // Id of the reference volume
25 Int_t fRefVolumeId2; // Id of the reference volume
26 ClassDef(AliFRAME,2) //Class for Space Frame
27};
28
29#endif
30
31
32