]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PMD/AliPMDsdigit.h
isolated cell serach included in AliPMDClusteringV1 and kept in recpoints for offline...
[u/mrichter/AliRoot.git] / PMD / AliPMDsdigit.h
index 7ca69988e705fad3853492f638d89431c902d6ea..8b1b27100af6b042035c0e9e9da24558a2b48bea 100644 (file)
@@ -19,7 +19,7 @@ class AliPMDsdigit : public TObject
 
  public:
   AliPMDsdigit();
-  AliPMDsdigit(Int_t trnumber, Int_t det, Int_t smn,
+  AliPMDsdigit(Int_t trnumber, Int_t trpid, Int_t det, Int_t smn,
               Int_t irow, Int_t icol, Float_t edep);
   AliPMDsdigit(AliPMDsdigit *pmdsdigit);
   AliPMDsdigit (const AliPMDsdigit &pmdsdigit);  // copy constructor
@@ -28,6 +28,7 @@ class AliPMDsdigit : public TObject
   virtual ~AliPMDsdigit();
 
   Int_t   GetTrackNumber() const;
+  Int_t   GetTrackPid() const;
   Int_t   GetDetector() const;
   Int_t   GetSMNumber() const;
   Int_t   GetRow() const;
@@ -37,13 +38,14 @@ class AliPMDsdigit : public TObject
   
  protected:
   Int_t   fTrNumber;   // Parent Track Number
+  Int_t   fTrPid;      // Parent Track pid
   Int_t   fDet;        // Detector Number (0:PRE, 1:CPV)
   Int_t   fSMN;        // Serial Module Number
   Int_t   fRow;        // Cell Row Number (0-47)
   Int_t   fColumn;     // Cell Column Number (0-95)
   Float_t fEdep;       // Energy deposition in a hexagonal cell
   
-  ClassDef(AliPMDsdigit,4) // SDigits object for Detector set:PMD
+  ClassDef(AliPMDsdigit,5) // SDigits object for Detector set:PMD
 };
 
 #endif