]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliLego.h
Removal of useless dependecies via forward declarations
[u/mrichter/AliRoot.git] / STEER / AliLego.h
1 #ifndef ALILEGO_H
2 #define ALILEGO_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 //                                                                           //
10 //                                                                           //
11 //    Utility class to compute and draw Radiation Length Map                 //
12 //                                                                           //
13 //                                                                           //
14 ///////////////////////////////////////////////////////////////////////////////
15
16 #include "TNamed.h"
17 class TH2F;
18
19 class AliLegoGenerator;
20
21 class AliLego : public TNamed  {
22
23 public:
24   AliLego();
25   AliLego(const char *title, Int_t ntheta,Float_t themin,
26           Float_t themax, Int_t nphi, Float_t phimin,
27           Float_t phimax,Float_t rmin,Float_t rmax,Float_t zmax);
28   AliLego(const AliLego &lego) {lego.Copy(*this);}
29   virtual ~AliLego();
30   void  Copy(AliLego &lego) const;
31   virtual void  StepManager();
32   virtual void  BeginEvent();
33   virtual void  FinishEvent();
34   virtual void  FinishRun();
35   virtual AliLego &operator=(const AliLego &lego) 
36   {lego.Copy(*this);return(*this);}
37   
38 private:
39   AliLegoGenerator *fGener;     //Lego generator
40    Float_t    fTotRadl;         //Total Radiation length
41    Float_t    fTotAbso;         //Total absorption length
42    Float_t    fTotGcm2;         //Total G/CM2 traversed
43    TH2F      *fHistRadl;        //Radiation length map 
44    TH2F      *fHistAbso;        //Interaction length map
45    TH2F      *fHistGcm2;        //g/cm2 length map
46    TH2F      *fHistReta;        //Radiation length map as a function of eta
47    
48   ClassDef(AliLego,1) //Utility class to compute and draw Radiation Length Map
49
50 };
51
52
53 #endif