]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TFluka/FlukaVolume.h
Access to the number of associated clusters (M.Ivanov)
[u/mrichter/AliRoot.git] / TFluka / FlukaVolume.h
1 #ifndef FLUKAVOLUME_H
2 #define FLUKAVOLUME_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 #include "TNamed.h"
9
10 class FlukaVolume : public TNamed 
11 {
12 public:
13     FlukaVolume() {;}
14     FlukaVolume(const char* name, const Int_t med);
15     virtual ~FlukaVolume(){;}
16     Int_t GetMedium() {return fMedium;}
17 private:
18     Int_t    fMedium;
19     ClassDef(FlukaVolume,1) // Transient storage for volume information
20 };
21 #endif