X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TOF%2FAliTOFCal.h;h=a1246dc783ae2231ab80425ab26a8ec1e25ad8b4;hb=b900a426a654d9eda2a1aebe4c0845834e2569ec;hp=061066dab9dd606ef9230a6433bc98fad587d724;hpb=6dc9348df8ccb183760ca0c448390a30b0e956b8;p=u%2Fmrichter%2FAliRoot.git diff --git a/TOF/AliTOFCal.h b/TOF/AliTOFCal.h index 061066dab9d..a1246dc783a 100644 --- a/TOF/AliTOFCal.h +++ b/TOF/AliTOFCal.h @@ -11,18 +11,19 @@ //_____________________________________________________________ #include "TObject.h" -#include "TROOT.h" -#include "TBrowser.h" -#include "TClass.h" -#include "AliTOFGeometryV4.h" #include "AliTOFChannel.h" +class TBrowser; +class AliTOFGeometry; + class AliTOFCal: public TObject { public: AliTOFCal(); + AliTOFCal(AliTOFGeometry *geom); AliTOFCal(const AliTOFCal& cal); + AliTOFCal& operator=(const AliTOFCal &source); // ass. op. virtual ~AliTOFCal(); void Browse(TBrowser *b); Bool_t IsFolder() const{return kTRUE;} @@ -49,6 +50,7 @@ private: Int_t fNpadX; // number of TOF pads X Int_t fnpad; // number of TOF channels + AliTOFGeometry *fGeom; // AliTOFgeometry pointer AliTOFChannel* fPads; //[fnpad] // array of AliTOFChannels storing the calib parameters ClassDef(AliTOFCal,1)