]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - CORRFW/AliCFPair.h
syntax correction in comments
[u/mrichter/AliRoot.git] / CORRFW / AliCFPair.h
index 9e95174c189caca751baf98e73a9a4e7fe51c7e6..0ce562c726872fa3f1f652acdf8edf30b208e029 100755 (executable)
@@ -70,6 +70,7 @@ 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)
 
@@ -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);
 };