X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TOF%2FAliTOFRecoParam.h;h=71c5258ff2b75e1bbcf82d4e3437f83d346b9a59;hb=3c91d66669042c705633fd7bfd979b1047caba02;hp=08e275323300d71c1cca93aa7d260330a686ffdc;hpb=45a69ca6851c4cac2725bcc0957fbfb9fef70727;p=u%2Fmrichter%2FAliRoot.git diff --git a/TOF/AliTOFRecoParam.h b/TOF/AliTOFRecoParam.h index 08e27532330..71c5258ff2b 100644 --- a/TOF/AliTOFRecoParam.h +++ b/TOF/AliTOFRecoParam.h @@ -42,6 +42,7 @@ class AliTOFRecoParam : public AliDetectorRecoParam Double_t GetTimeResolution() const { return fTimeResolution;} Double_t GetTimeNSigma() const { return fTimeNSigma;} Int_t GetMaxDeltaTime() const { return fMaxDeltaTime;} + Int_t GetStartTimeType() const { return fStartTimeType;} //Setters @@ -63,6 +64,7 @@ class AliTOFRecoParam : public AliDetectorRecoParam void SetTimeNSigma(Double_t in) {fTimeNSigma=in;} void SetMaxDeltaTime(Int_t a) {fMaxDeltaTime = a;}; // to set deltaTime [bin number] void SetMaxDeltaTime(Float_t a) {fMaxDeltaTime = (Int_t)(a/AliTOFGeometry::TdcBinWidth());}; // to set deltaTime [ps] + void SetStartTimeType(Int_t a) {fStartTimeType = a;}; static AliTOFRecoParam *GetPbPbparam(); // reco param for PbPb. static AliTOFRecoParam *GetPPparam(); // reco param for PP @@ -87,8 +89,9 @@ class AliTOFRecoParam : public AliDetectorRecoParam Int_t fMaxDeltaTime; // max time difference in between two tof // measurements for two neighbouring pads // [number of bins] + Int_t fStartTimeType; // flag to set start_time to be used for TOF PID - ClassDef(AliTOFRecoParam, 4) + ClassDef(AliTOFRecoParam, 5) }; #endif