]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - CORRFW/AliCFPair.h
o limit vertex to +-10
[u/mrichter/AliRoot.git] / CORRFW / AliCFPair.h
index 9e95174c189caca751baf98e73a9a4e7fe51c7e6..84da24d6488f0cd5e99c06b5e9980a3f6cd24096 100755 (executable)
@@ -70,9 +70,10 @@ class AliCFPair : public AliVParticle {
   virtual Short_t    Charge() const {return 0;} // returns 0 because opposite charge tracks... maybe to extend to all kinds of pairs
   virtual Int_t      GetLabel() const {return fLabel;}
   virtual void       SetLabel(Int_t label) {fLabel=label;}
+  virtual void       SetMassHypothesis(Double_t massNeg, Double_t massPos) {fMassNeg=massNeg;fMassPos=massPos;}
   // PID
   virtual const Double_t *PID() const {return 0;} // return PID object (to be defined, still)
-
+  virtual Int_t PdgCode() const {return 0;}
 
  private:
   Bool_t fIsV0;            // true if V0 passed to the constructor
@@ -82,6 +83,8 @@ class AliCFPair : public AliVParticle {
   AliAODv0*    fAODV0;     // pointer to the AOD V0 if AliAODv0 is passed to the constructor
   Int_t        fLabel;     // associated MC label
   Int_t        fV0PDG;     // assumed V0 PDG
+  Double_t     fMassNeg;
+  Double_t     fMassPos;
   
   ClassDef(AliCFPair,0);
 };