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