]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PWG2/RESONANCES/AliRsnPair.cxx
Bugfix: moved the initialization of 4-vectors for daughters before cut checking,...
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnPair.cxx
index 88629ef63f7e542781ba9e9e6612a30b7fc3e276..da0e0a996f641b2a82bd536538a464669103a830 100644 (file)
 //          M. Vala (email: martin.vala@cern.ch)
 //
 
-#include "TObjArray.h"
+#include <Riostream.h>
+#include <TList.h>
 
 #include "AliLog.h"
 
+#include "AliRsnMother.h"
+#include "AliRsnEvent.h"
 #include "AliRsnFunction.h"
-#include "AliRsnPairParticle.h"
+#include "AliRsnCutSet.h"
+#include "AliRsnCutStd.h"
+#include "AliRsnValue.h"
+#include "AliRsnCutManager.h"
 
 #include "AliRsnPair.h"
 
 ClassImp(AliRsnPair)
 
 //_____________________________________________________________________________
-AliRsnPair::AliRsnPair
-(EPairType type, AliRsnPairDef *def, Int_t mixNum) :
-  TObject(),
+AliRsnPair::AliRsnPair(const char *name, AliRsnPairDef *def) :
+  TNamed(name, ""),
+  fOnlyTrue(kFALSE),
+  fCheckDecay(kFALSE),
   fIsMixed(kFALSE),
-  fUseMC(kFALSE),
-  fIsLikeSign(kFALSE),
-  fMixNum(mixNum),
-  fMixingCut(0x0),
   fPairDef(def),
-  fPairType(type),
-  fTypePID(AliRsnDaughter::kRealistic),
-  fCutMgr(0),
-  fFunctions("AliRsnFunction", 0)
+  fCutManager(),
+  fMother(),
+  fEvent(0x0)
 {
 //
 // Default constructor
 //
 
-  SetUp(type);
-}
-//_____________________________________________________________________________
-AliRsnPair::~AliRsnPair()
-{
-//
-// Destructor
-//
+  AliDebug(AliLog::kDebug+2,"<-");
+  AliDebug(AliLog::kDebug+2,"->");
 }
 
 //_____________________________________________________________________________
-void AliRsnPair::SetUp(EPairType type)
+AliRsnPair::AliRsnPair(const AliRsnPair& copy) :
+  TNamed(copy),
+  fOnlyTrue(copy.fOnlyTrue),
+  fCheckDecay(copy.fCheckDecay),
+  fIsMixed(copy.fIsMixed),
+  fPairDef(copy.fPairDef),
+  fCutManager(copy.fCutManager),
+  fMother(copy.fMother),
+  fEvent(0x0)
 {
 //
-// Sets up flag values by the pair types
+// Default constructor
 //
 
-  switch (type)
-  {
-    case kNoPID:
-      SetAllFlags(AliRsnDaughter::kNoPID, kFALSE, kFALSE);
-      break;
-    case kNoPIDMix:
-      SetAllFlags(AliRsnDaughter::kNoPID, kTRUE, kFALSE);
-      break;
-    case kRealisticPID:
-      SetAllFlags(AliRsnDaughter::kRealistic, kFALSE, kFALSE);
-      break;
-    case kRealisticPIDMix:
-      SetAllFlags(AliRsnDaughter::kRealistic, kTRUE, kFALSE);
-      break;
-    case kPerfectPID:
-      // SetAllFlags (AliRsnDaughter::kPerfect, kFALSE, kFALSE);
-      SetAllFlags(AliRsnDaughter::kPerfect, kFALSE, kTRUE);
-      break;
-    case kPerfectPIDMix:
-      // SetAllFlags (AliRsnDaughter::kPerfect, kTRUE, kFALSE);
-      SetAllFlags(AliRsnDaughter::kPerfect, kTRUE, kTRUE);
-      break;
-    default :
-      AliWarning("Wrong type selected: setting up for kRealisticPID.");
-      SetAllFlags(AliRsnDaughter::kRealistic, kFALSE, kFALSE);
-      break;
-  }
+  AliDebug(AliLog::kDebug+2,"<-");
+  AliDebug(AliLog::kDebug+2,"->");
 }
 
 //_____________________________________________________________________________
-void AliRsnPair::SetAllFlags(AliRsnDaughter::EPIDMethod pidType, Bool_t isMix, Bool_t useMC)
+AliRsnPair& AliRsnPair::operator=(const AliRsnPair& copy)
 {
-//
-// Sets up all flags values
-//
+  fOnlyTrue = copy.fOnlyTrue;
+  fCheckDecay = copy.fCheckDecay;
+  fIsMixed = copy.fIsMixed;
+  fPairDef = copy.fPairDef;
+  fMother = copy.fMother;
+  fCutManager = copy.fCutManager;
+  fEvent = 0x0;
 
-  fTypePID = pidType;
-  fIsMixed = isMix;
-  fUseMC = useMC;
+  return (*this);
 }
 
 //_____________________________________________________________________________
-void AliRsnPair::Init()
+AliRsnPair::~AliRsnPair()
 {
 //
-// Init pair
+// Destructor
 //
 
-  fIsLikeSign = fPairDef->IsLikeSign();
-  Print();
+  AliDebug(AliLog::kDebug+2,"<-");
+  AliDebug(AliLog::kDebug+2,"->");
 }
 
 //_____________________________________________________________________________
@@ -117,311 +98,135 @@ void AliRsnPair::Print(Option_t* /*option*/) const
 //
 // Prints info about pair
 //
-  AliInfo(Form("%s", GetPairHistTitle(0x0).Data()));
-  AliInfo(Form("PDG %d %d", AliRsnPID::PDGCode(fPairDef->GetType(0)),
-               AliRsnPID::PDGCode(fPairDef->GetType(1))));
-  AliInfo(Form("Masses %f %f", fPairDef->GetMass(0), fPairDef->GetMass(1)));
-  AliInfo(Form("Number of functions %d", fFunctions.GetEntries()));
-  switch(fTypePID) {
-    case AliRsnDaughter::kNoPID:
-      AliInfo("PID method: none");
-      break;
-    case AliRsnDaughter::kRealistic:
-      AliInfo("PID method: realistic");
-      break;
-    case AliRsnDaughter::kPerfect:
-      AliInfo("PID method: perfect");
-      break;
-    default:
-      AliInfo("PID method: undefined");
-    }
-}
 
-//_____________________________________________________________________________
-void AliRsnPair::ProcessPair(AliRsnEventBuffer *buf)
-{
-//
-// Process one event in this pair
-//
+  AliDebug(AliLog::kDebug+2,"<-");
+  AliInfo(Form("PDG %d %d", AliPID::ParticleCode(fPairDef->GetPID(0)), AliPID::ParticleCode(fPairDef->GetPID(1))));
+  AliInfo(Form("Masses %f %f", fPairDef->GetMass(0), fPairDef->GetMass(1)));
 
-  AliRsnEvent *e1 = buf->GetCurrentEvent();
-  if (!e1) return;
-//   if (e1->GetMultiplicity() < 1) return;
-  TArrayI* array1 = e1->GetTracksArray(fTypePID, fPairDef->GetCharge(0), fPairDef->GetType(0));
-  
-  Int_t i = 0;
-  Int_t numMixed = 0;
-  //Int_t lastOkEvent = buf->IndexOf(e1) - 2*fMixNum;
-  //if (lastOkEvent < 0) lastOkEvent = 0;
-  Int_t lastOkEvent = buf->IndexOf(e1) - 1;
-  TArrayI* array2 = 0;
-  for (i = 0; i < fMixNum; i++)
-  {
-    // find other event by event cut
-    AliRsnEvent *e2 = 0;
-    e2 = FindEventByEventCut(buf, lastOkEvent);
-    if (!e2) return;
-    if (fIsMixed) {
-      AliInfo(Form("ev1 = #%d -- ev2 = #%d -- nMixed = %d/%d", buf->IndexOf(e1), buf->IndexOf(e2), i, fMixNum));
-      //AliInfo(Form("Diff Mult = %d", TMath::Abs(e1->GetMultiplicity() - e2->GetMultiplicity())));
-      //AliInfo(Form("Diff Vz   = %f", TMath::Abs(e1->GetVz() - e2->GetVz())));
-      //AliInfo(Form("Diff Phi  = %f", TMath::Abs(e1->GetPhiMean() - e2->GetPhiMean())));
-    }
-//     if (e2->GetMultiplicity() < 1) continue;
-    array2 = e2->GetTracksArray(fTypePID, fPairDef->GetCharge(1), fPairDef->GetType(1));
-    LoopPair(e1, array1, e2, array2);
-    numMixed++;
-    lastOkEvent--;
-  }
-//  if (fIsMixed) AliInfo (Form ("NumMixed = %d",numMixed));
+  AliDebug(AliLog::kDebug+2,"->");
 }
 
 //_____________________________________________________________________________
-AliRsnEvent * AliRsnPair::FindEventByEventCut(AliRsnEventBuffer *buf, Int_t& num)
+Bool_t AliRsnPair::Fill
+(AliRsnDaughter *daughter0, AliRsnDaughter *daughter1, AliRsnEvent *ev0, AliRsnEvent *ev1)
 {
 //
-// For now it just returns num events before current event
-// in buffer (buf)
-// TODO event cut selection
+// Sets the two passed daughters to the AliRsnMother data member of this object
+// which is used to perform all computations to fill the value list.
+// This operation is done successfully only when the first passed object matches
+// the required object type (track/V0) and the required charge for first element in pair def,
+// and the second passed object does the same w.r. to the second element in pair def.
+// Moreover, all cuts are checked and the operation fails if a cut check is unsuccessful.
+// Finally, if a true pair is required, this is checked at the end.
 //
 
-  AliRsnEvent *returnEvent = 0x0;
-
-  if (fIsMixed)
+  AliDebug(AliLog::kDebug+2,"<-");
+  
+  // first of all, compute the 4-momenta of the daughters
+  // and that of the mother, according to current pair def
+  // this could be needed for some cuts
+  fMother.SetDaughters(daughter0, fPairDef->GetMass(0), daughter1, fPairDef->GetMass(1));
+  
+  // check for correct type-charge match for first element
+  if (daughter0->RefType() != fPairDef->GetDaughterType(0)) return kFALSE;
+  if (daughter0->ChargeChar() != fPairDef->GetCharge(0)) return kFALSE;
+  
+  // check for correct type-charge match for second element
+  if (daughter1->RefType() != fPairDef->GetDaughterType(1)) return kFALSE;
+  if (daughter1->ChargeChar() != fPairDef->GetCharge(1)) return kFALSE;
+    
+  // cuts on track #1 & common
+  fCutManager.SetEvent(ev0);
+  if (!fCutManager.PassDaughter1Cuts(daughter0)) 
   {
-    //returnEvent = buf->GetEvent(buf->GetEventsBufferIndex() - num);
-    returnEvent = buf->GetNextGoodEvent(num, fMixingCut);
+    AliDebug(AliLog::kDebug+2, "Specific cuts for track #1 not passed");
+    return kFALSE;
   }
-  else
+  if (!fCutManager.PassCommonDaughterCuts(daughter0))
   {
-    returnEvent = buf->GetCurrentEvent();
+    AliDebug(AliLog::kDebug+2, "Common cuts for track #1 not passed");
+    return kFALSE;
   }
-
-  return returnEvent;
-}
-
-//_____________________________________________________________________________
-void AliRsnPair::LoopPair
-(AliRsnEvent * ev1, TArrayI * a1, AliRsnEvent * ev2, TArrayI * a2)
-{
-//
-// Loop on all pairs of tracks of the defined types/charges,
-// using the arrays of indexes and the events containing them.
-//
-
-  if (!a1) {AliDebug(4, "No TArrayI 1 from currentEvent->GetTracksArray(...)"); return;}
-  if (!a2) {AliDebug(4, "No TArrayI 2 from currentEvent->GetTracksArray(...)"); return;}
-
-  AliRsnDaughter::SetPIDMethod(fTypePID);
-  AliRsnDaughter *daughter1 = 0;
-  AliRsnDaughter *daughter2 = 0;
-  AliRsnFunction *fcn = 0;
-  Int_t j, startj = 0;
-    for (Int_t i = 0; i < a1->GetSize(); i++)
-    {
-        // get track #1
-        daughter1 = (AliRsnDaughter *) ev1->GetTrack(a1->At(i));
-        if (!daughter1) continue;
-        // cuts on track #1
-        if (!CutPass(daughter1)) continue;
-        // get track #2
-        daughter2 = 0;
-        // check starting index for searching the event:
-        // for like-sign pairs we avoid duplicating the pairs
-        if (fIsLikeSign) startj = i+1; else startj = 0;
-        // AliInfo(Form("%d",startj));
-        // loop on event for all track #2 to be combined with the found track #1
-        for (j = startj; j < a2->GetSize(); j++)
-        {
-            daughter2 = (AliRsnDaughter *) ev2->GetTrack(a2->At(j));
-            if (!daughter2) continue;
-            // cuts on track #2
-            if (!CutPass(daughter2)) continue;
-            // make pair
-            AliRsnPairParticle pairParticle;
-            pairParticle.SetPair(daughter1, daughter2);
-            // cuts on pair
-            if (!CutPass(&pairParticle)) continue;
-            // fill all histograms
-            TObjArrayIter nextFcn(&fFunctions);
-            while ( (fcn = (AliRsnFunction*)nextFcn()) ) {
-                fcn->Fill(&pairParticle, fPairDef);
-            }
-        }
-    }
-}
-
-//_____________________________________________________________________________
-TList * AliRsnPair::GenerateHistograms(TString prefix)
-{
-//
-// Generates needed histograms
-//
-
-  TList *list = new TList();
-  list->SetName(GetPairHistName(0x0).Data());
-
-  Char_t hName[255], hTitle[255];
-  AliRsnFunction *fcn = 0;
-  for (Int_t i=0;i< fFunctions.GetEntries();i++)
-  {
-    fcn = (AliRsnFunction*)fFunctions.At(i);
-    sprintf(hName, "%s_%s", prefix.Data(), GetPairHistName(fcn).Data());
-    sprintf(hTitle, "%s", GetPairHistTitle(fcn).Data());
-    TList *histos = fcn->Init(hName, hTitle);
-    histos->Print();
-    list->Add(histos);
-  }
-
-  return list;
-}
-
-//_____________________________________________________________________________
-void AliRsnPair::GenerateHistograms(TString prefix, TList *tgt)
-{
-//
-// Generates needed histograms
-//
-
-  if (!tgt) {
-    AliError("NULL target list!");
-    return;
-  }
-
-  Char_t hName[255], hTitle[255];
-  AliRsnFunction *fcn = 0;
-  for (Int_t i=0;i< fFunctions.GetEntries();i++)
+  
+  // cuts on track #2 & common
+  fCutManager.SetEvent(ev1);
+  if (!fCutManager.PassDaughter2Cuts(daughter1))
   {
-    fcn = (AliRsnFunction*)fFunctions.At(i);
-    sprintf(hName, "%s_%s", prefix.Data(), GetPairHistName(fcn).Data());
-    sprintf(hTitle, "%s", GetPairHistTitle(fcn).Data());
-    fcn->Init(hName, hTitle, tgt);
+    AliDebug(AliLog::kDebug+2, "Specific cuts for track #2 not passed");
+    return kFALSE;
   }
-}
-
-//_____________________________________________________________________________
-TString AliRsnPair::GetPairTypeName(EPairType type) const
-{
-//
-// Returns type name, made with particle names ant chosen PID
-//
-  switch (type)
+  if (!fCutManager.PassCommonDaughterCuts(daughter1))
   {
-    case kNoPID : return ("NOPID_");break;
-    case kNoPIDMix : return ("NOPIDMIX_");break;
-    case kRealisticPID : return ("REALISTIC_");break;
-    case kRealisticPIDMix : return ("REALISTICMIX_");break;
-    case kPerfectPID : return ("PERFECT_");break;
-    case kPerfectPIDMix : return ("PERFECTMIX_");break;
-    case kTruePairs : return ("TRUEPAIRS_"); break;
-    default:
-      AliWarning("Unrecognized value of EPairTypeName argument");
-      break;
+    AliDebug(AliLog::kDebug+2, "Common cuts for track #2 not passed");
+    return kFALSE;
   }
-
-  return "NOTYPE";
-}
-
-//_____________________________________________________________________________
-TString AliRsnPair::GetPairName() const
-{
-//
-// Retruns pair name
-//
-  TString sName;
-  sName += GetPairTypeName(fPairType);
-  sName += fPairDef->GetPairName();
-
-  return sName;
-}
-
-//_____________________________________________________________________________
-TString AliRsnPair::GetPairHistName(AliRsnFunction *fcn, TString text) const
-{
-//
-// Returns eff. mass histogram name
-//
-
-  TString sName;
-  if (fcn)
+  
+  // point to first event as reference
+  fEvent = ev0;
+  
+  // define pair & check
+  fCutManager.SetEvent(fEvent);
+  if (!fCutManager.PassMotherCuts(&fMother)) return kFALSE;
+  
+  // if required a true pair, check this here and eventually return a fail message
+  if (fOnlyTrue)
   {
-    sName = fcn->GetFcnName();
-    sName += "_";
+    // are we in a MonteCarlo?
+    if (!daughter0->GetParticle() || !daughter1->GetParticle()) return kFALSE;
+    
+    // are the daughters really secondaries (in MC)?
+    Int_t m0 = daughter0->GetParticle()->GetFirstMother();
+    Int_t m1 = daughter1->GetParticle()->GetFirstMother();
+    if (m0 < 0 || m1 < 0) return kFALSE;
+    
+    // if they are, do they come from the same mother?
+    if (m0 != m1) return kFALSE;
+    
+    //cout << "Checking a true pair..." << endl;
+    
+    // if they do, is this mother the correct type?
+    Int_t mpdg0 = TMath::Abs(daughter0->GetMotherPDG());
+    Int_t mpdg1 = TMath::Abs(daughter1->GetMotherPDG());
+    Int_t mpdg  = TMath::Abs(fPairDef->GetMotherPDG());
+    if (mpdg0 != mpdg) return kFALSE; //{cout << "Mother of d0 is " << mpdg0 << " instead of " << mpdg << endl; return kFALSE;}
+    if (mpdg1 != mpdg) return kFALSE; //{cout << "Mother of d1 is " << mpdg1 << " instead of " << mpdg << endl; return kFALSE;}
+    
+    // do they match the expected decay channel (that is, are they the expected types)?
+    if (fCheckDecay)
+    {
+      //cout << "Checking decay tree..." << endl;
+      Int_t pdg0 = TMath::Abs(daughter0->GetParticle()->GetPdgCode());
+      Int_t pdg1 = TMath::Abs(daughter1->GetParticle()->GetPdgCode());
+      if (AliPID::ParticleCode(fPairDef->GetPID(0)) != pdg0) return kFALSE; // {cout << "PDG0 is " << pdg0 << " instead of " << fPairDef->GetPID(0) << endl; return kFALSE;};
+      if (AliPID::ParticleCode(fPairDef->GetPID(1)) != pdg1) return kFALSE; // {cout << "PDG1 is " << pdg1 << " instead of " << fPairDef->GetPID(1) << endl; return kFALSE;};
+      //cout << "Decay tree accepted!" << endl;
+    }
+    
+    // ok... if we arrive here that must really be a true pair! :-)
+    //cout << "Pair accepted!" << endl;
   }
-  sName += GetPairName();
-  sName += "_";
-  if (fCutMgr) sName += fCutMgr->GetName();
-  sName += text;
 
-  return sName;
+  AliDebug(AliLog::kDebug+2,"->");
+  
+  return kTRUE;
 }
 
 //_____________________________________________________________________________
-TString AliRsnPair::GetPairHistTitle(AliRsnFunction *fcn, TString text) const
+void AliRsnPair::Compute()
 {
 //
-// Returns eff. mass histogram title
+// Virtual method to compute pair quantities of interest
 //
 
-  TString sTitle;
-  if (fcn)
-  {
-    sTitle = fcn->GetFcnTitle();
-    sTitle += " ";
-  }
-  sTitle += GetPairName();
-  sTitle +=" ";
-  if (fCutMgr) sTitle += fCutMgr->GetTitle();
-  sTitle += text;
-
-  return sTitle;
+  AliWarning("Implement this method in derived classes");
 }
 
 //_____________________________________________________________________________
-void AliRsnPair::AddFunction(AliRsnFunction *fcn)
-{
-//
-// Adds a new computing function
-//
-  Int_t size = fFunctions.GetEntries();
-  new(fFunctions[size]) AliRsnFunction(*fcn);
-}
-
-//________________________________________________________________________________________
-Bool_t AliRsnPair::CutPass(AliRsnDaughter *d)
+void AliRsnPair::Init(const char* /*prefix*/, TList* /*list*/)
 {
 //
-// Check if the AliRsnDaughter argument pass its cuts.
-// If the cut data member is not initialized for it, returns kTRUE.
+// Virtual method to compute pair quantities of interest
 //
-  if (!fCutMgr) return kTRUE;
-  else return fCutMgr->IsSelected(AliRsnCut::kParticle, d);
-}
 
-//________________________________________________________________________________________
-Bool_t AliRsnPair::CutPass(AliRsnPairParticle *p)
-{
-//
-// Check if the AliRsnPairParticle argument pass its cuts.
-// If the cut data member is not initialized for it, returns kTRUE.
-// In this case, another separate check which could be necessary
-// concerns the possibility that the two tracks are a "true pair" of
-// daughters of the same resonance. If the corresponding flag is set,
-// this further check is done, and the method returns kTRUE only
-// when also this check is passed.
-//
-
-  if (!fCutMgr) return kTRUE;
-  else return fCutMgr->IsSelected(AliRsnCut::kPair, p);
-}
-
-//________________________________________________________________________________________
-Bool_t AliRsnPair::CutPass(AliRsnEvent *e)
-{
-//
-// Check if the AliRsnEvent argument pass its cuts.
-// If the cut data member is not initialized for it, returns kTRUE.
-//
-  if (!fCutMgr) return kTRUE;
-  else return fCutMgr->IsSelected(AliRsnCut::kEvent, e);
+  AliWarning("Implement this method in derived classes");
 }