/** * \file ToFLevel2.h * \author Gianfranca DeRosa / Wolfgang Menn */ #ifndef ToFLevel2_h #define ToFLevel2_h // #include #include #include #include #include // // class which contains track related variables // #define ZTOF11 53.74 #define ZTOF12 53.04 #define ZTOF21 23.94 #define ZTOF22 23.44 #define ZTOF31 -23.49 #define ZTOF32 -24.34 /** * \brief Class which contains the PMT data * * If there is a valid ADC or a TDC value (value<4095) for a PMT, both ADC and TDC data * are stored in the PMT class. * Look in the ToFLevel2Ex.cxx example in the repository how to read the PMT class. */ class ToFPMT : public TObject { private: public: Int_t pmt_id; ///GetEntries();}; Int_t npmt(){return PMT->GetEntries();}; // void GetLevel2Struct(cToFLevel2 *) const; // ToFTrkVar *GetToFTrkVar(Int_t notrack); ToFPMT *GetToFPMT(Int_t nohit); Int_t GetPMTid(Int_t gg, Int_t hh); TString GetPMTName(Int_t ind); Int_t GetPlaneIndex(Int_t pmt_id); void GetMatrix(Int_t notrack, Float_t adc[4][12], Float_t tdc[4][12]); void GetPMTIndex(Int_t pmt_id, Int_t &gg, Int_t &hh); // gf Apr 07 void GetdEdxPaddle(Int_t notrack, Int_t paddleid, Int_t adcfl, Float_t &PadEdx, Int_t &SatWarning); // gf Apr 07 TString GetPMTName(Int_t ind, Int_t &iplane, Int_t &ipaddle,Int_t &ipmt); Int_t GetPaddleIdOfTrack(Float_t xtr, Float_t ytr, Int_t plane); // gf Apr 07 void GetPMTPaddle(Int_t pmt_id, Int_t &plane, Int_t &paddle); // gf Apr 07 void GetPaddlePMT(Int_t paddle, Int_t &pmtleft, Int_t &pmtright); // gf Apr 07 void GetPaddleGeometry(Int_t plane, Int_t paddle, Float_t &xleft, Float_t &xright, Float_t &yleft, Float_t &yright); // gf Apr 07 Int_t GetPaddleid(Int_t plane, Int_t paddle); void GetPaddlePlane(Int_t padid, Int_t &plane, Int_t &paddle); Int_t GetNPaddle(Int_t plane); // // // constructor // ToFLevel2(); ~ToFLevel2(){Delete();}; //ELENA void Delete(); //ELENA void Set();//ELENA // // ToFLevel2* GetToFLevel2(){return this;}; /** * Method to get the z-position of the 6 TOF layers from the plane ID * @param plane_id Plane ID (11 12 21 22 31 32) */ Float_t GetZTOF(Int_t plane_id){ switch(plane_id){ case 11: return ZTOF11; case 12: return ZTOF12; case 21: return ZTOF21; case 22: return ZTOF22; case 31: return ZTOF31; case 32: return ZTOF32; default: return 0.; }; }; // // Paddles position // /* S11 8 paddles 33.0 x 5.1 cm S12 6 paddles 40.8 x 5.5 cm S21 2 paddles 18.0 x 7.5 cm S22 2 paddles 15.0 x 9.0 cm S31 3 paddles 15.0 x 6.0 cm S32 3 paddles 18.0 x 5.0 cm */ Int_t GetToFPlaneID(Int_t ip); Int_t GetToFPlaneIndex(Int_t plane_id); Bool_t HitPaddle(Int_t ,Int_t); Int_t GetNHitPaddles(Int_t plane); void Clear(); // ClassDef(ToFLevel2,2); }; #endif