]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Removed unused obsolete classes
authorfbellini <fbellini@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Apr 2012 08:45:24 +0000 (08:45 +0000)
committerfbellini <fbellini@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Apr 2012 08:45:24 +0000 (08:45 +0000)
PWGLF/RESONANCES/AliRsnLoopEffDaughter.cxx [deleted file]
PWGLF/RESONANCES/AliRsnLoopEffDaughter.h [deleted file]
PWGLF/RESONANCES/AliRsnPIDManager.cxx [deleted file]
PWGLF/RESONANCES/AliRsnPIDManager.h [deleted file]
PWGLF/RESONANCES/AliRsnValuePID.cxx [deleted file]
PWGLF/RESONANCES/AliRsnValuePID.h [deleted file]
PWGLF/RESONANCES/AliRsnValueStd.cxx [deleted file]
PWGLF/RESONANCES/AliRsnValueStd.h [deleted file]

diff --git a/PWGLF/RESONANCES/AliRsnLoopEffDaughter.cxx b/PWGLF/RESONANCES/AliRsnLoopEffDaughter.cxx
deleted file mode 100644 (file)
index b02ee10..0000000
+++ /dev/null
@@ -1,193 +0,0 @@
-//
-// Class AliRsnLoopEffDaughter
-//
-// Inherits from basic AliRsnLoopEff for efficiency,
-// and computed efficiencies for single-tracks
-// using cut set definitions.
-//
-// author: Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
-//
-
-#include "AliStack.h"
-
-#include "AliRsnDaughterDef.h"
-#include "AliRsnCutSet.h"
-
-#include "AliRsnLoopEffDaughter.h"
-
-ClassImp(AliRsnLoopEffDaughter)
-
-//_____________________________________________________________________________
-AliRsnLoopEffDaughter::AliRsnLoopEffDaughter(const char *name, AliRsnDaughterDef *def) :
-   AliRsnLoopEff(name),
-   fDef(def)
-{
-//
-// Default constructor.
-// Do not repeat 'DefineOutput' since it is done in base class and we don't add new ones.
-//
-}
-
-//_____________________________________________________________________________
-AliRsnLoopEffDaughter::AliRsnLoopEffDaughter(const AliRsnLoopEffDaughter &copy) :
-   AliRsnLoopEff(copy),
-   fDef(copy.fDef)
-{
-//
-// Copy constrtuctor.
-//
-}
-
-//_____________________________________________________________________________
-AliRsnLoopEffDaughter &AliRsnLoopEffDaughter::operator=(const AliRsnLoopEffDaughter &copy)
-{
-//
-// Assignment operator.
-// Owned data members are meaningless for this operator.
-//
-
-   AliRsnLoopEff::operator=(copy);
-   if (this == &copy)
-      return *this;
-   fDef = copy.fDef;
-
-   return (*this);
-}
-
-//_____________________________________________________________________________
-Bool_t AliRsnLoopEffDaughter::OkStepMC(TObject *target, Int_t istep)
-{
-//
-// Check step with MC
-//
-
-   AliRsnCutSet *cuts = (AliRsnCutSet *)fStepsMC[istep];
-   return cuts->IsSelected(target);
-}
-
-//_____________________________________________________________________________
-Bool_t AliRsnLoopEffDaughter::OkStepRec(TObject *target, Int_t istep)
-{
-//
-// Check step with MC
-//
-
-   AliRsnCutSet *cuts = (AliRsnCutSet *)fStepsRec[istep];
-   return cuts->IsSelected(target);
-}
-
-//_____________________________________________________________________________
-Int_t AliRsnLoopEffDaughter::ProcessEventESD(AliRsnEvent *rsn)
-{
-//
-// Process current event with the definitions of the specified step in MC list
-// and store results in the container slot defined in second argument.
-// It is associated with the AliCFContainer with the name of the pair.
-//
-
-   AliESDEvent *esd   = rsn->GetRefESD();
-   AliMCEvent  *mc    = rsn->GetRefMCESD();
-   TArrayI      indexes;
-   Int_t        imax, istep, icheck, itrack, ipart;
-   Int_t        nsteps = NSteps();
-
-   static AliRsnDaughter daughter;
-   daughter.SetOwnerEvent(rsn);
-
-   // loop on the MC list of particles
-   for (ipart = 0; ipart < stack->GetNprimary(); ipart++) {
-
-      // MC particle
-      daughter.SetRefMC((AliMCParticle *)mc->GetTrack(ipart));
-
-      // search for reconstructed track
-      // if no tracks are found with that label, rec ref is set to zero
-      // if more than one tracks are found we use the one which passes
-      // most cut steps
-      indexes = FindTracks(ipart, esd);
-      if (indexes.GetSize() < 1)
-         daughter.SetRef(0x0);
-      else if (indexes.GetSize() == 1)
-         daughter.SetRef(esd->GetTrack(indexes[0]));
-      else {
-         imax = istep = itrack = 0;
-         for (icheck = 0; icheck < indexes.GetSize(); icheck++) {
-            daughter.SetRef(esd->GetTrack(indexes[icheck]));
-            daughter.SetMass(def->GetMass());
-            istep = NGoodSteps(&daughter);
-            if (istep > imax) itrack = icheck;
-         }
-         daughter.SetRef(esd->GetTrack(indexes[itrack]));
-      }
-
-      // compute 4-momenta
-      daughter.SetMass(def->GetMass());
-
-      // fill MC container
-      for (istep = 0; istep < nsteps; istep++) {
-         if (!OkStep(&daughter, istep)) break;
-         GetOutput()->Fill(&daughter, istep);
-      }
-   }
-}
-
-//_____________________________________________________________________________
-Int_t AliRsnLoopEffDaughter::ProcessEventAOD(AliRsnEvent *rsn)
-{
-//
-// Process current event with the definitions of the specified step in MC list
-// and store results in the container slot defined in second argument.
-// It is associated with the AliCFContainer with the name of the pair.
-//
-
-   AliAODEvent  *aod     = fRsnEvent[0].GetRefAOD();
-   TClonesArray *mcArray = (TClonesArray *)aod->GetList()->FindObject(AliAODMCParticle::StdBranchName());
-   if (!mcArray) return;
-   TArrayI       indexes;
-   Int_t         imax, istep, icheck, itrack, ipart;
-
-   static AliRsnDaughter daughter;
-   daughter->SetOwnerEvent(rsn);
-
-   // loop on the MC list of particles
-   TObjArrayIter next(mcArray);
-   AliAODMCParticle *particle;
-   while ((particle = (AliAODMCParticle *)next())) {
-
-      // MC particle
-      daughter.SetRefMC(particle);
-
-      // search for reconstructed track
-      // if no tracks are found with that label, rec ref is set to zero
-      // if more than one tracks are found we use the one which passes
-      // most cut steps
-      ipart = particle->GetLabel();
-      indexes = FindTracks(ipart, aod);
-      if (indexes.GetSize() < 1)
-         daughter.SetRef(0x0);
-      else if (indexes.GetSize() == 1)
-         daughter.SetRef(aod->GetTrack(indexes[0]));
-      else {
-         imax = istep = itrack = 0;
-         for (icheck = 0; icheck < indexes.GetSize(); icheck++) {
-            daughter.SetRef(aod->GetTrack(indexes[icheck]));
-            daughter.SetMass(def->GetMass());
-            istep = NGoodSteps();
-            if (istep > imax) {
-               itrack = icheck;
-               imax = istep;
-            }
-         }
-         daughter.SetRef(aod->GetTrack(indexes[itrack]));
-      }
-
-      // compute 4-momenta
-      daughter.SetMass(def->GetMass());
-
-      // fill MC container
-      for (istep = 0; istep < nsteps; istep++) {
-         if (!OkStep(&daughter, istep)) break;
-         GetOutput()->Fill(&daughter, istep);
-      }
-   }
-}
diff --git a/PWGLF/RESONANCES/AliRsnLoopEffDaughter.h b/PWGLF/RESONANCES/AliRsnLoopEffDaughter.h
deleted file mode 100644 (file)
index 41b0de4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// Class AliRsnLoopEffDaughter
-//
-// Inherits from basic AliRsnAnalysisTaskEff for efficiency,
-// and computed efficiencies for single-tracks
-//
-// author: Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
-//
-
-#ifndef ALIRSNLOOPEFFDAUGHTER_H
-#define ALIRSNLOOPEFFDAUGHTER_H
-
-#include "AliRsnLoopEff.h"
-
-class AliRsnDaughterDef;
-
-class AliRsnLoopEffDaughter : public AliRsnLoopEff {
-
-public:
-
-   AliRsnLoopEffDaughter(const char *name, AliRsnDaughterDef *def);
-   AliRsnLoopEffDaughter(const AliRsnLoopEffDaughter &copy);
-   AliRsnLoopEffDaughter &operator=(const AliRsnLoopEffDaughter &copy);
-   virtual ~AliRsnLoopEffDaughter() {;};
-
-   AliRsnDaughterDef *GetDef()                       {return fDef;}
-   void               SetDef(AliRsnDaughterDef *def) {fDef = def;}
-
-   virtual Bool_t     OkStepMC(TObject *checked, Int_t step);
-   virtual Bool_t     OkStepRec(TObject *checked, Int_t step);
-
-protected:
-
-   virtual Int_t ProcessEventESD(AliRsnEvent *rsn);
-   virtual Int_t ProcessEventAOD(AliRsnEvent *rsn);
-
-   AliRsnDaughterDef *fDef;  // used daughter definition
-
-   ClassDef(AliRsnLoopEffDaughter, 1)
-};
-
-#endif
-
diff --git a/PWGLF/RESONANCES/AliRsnPIDManager.cxx b/PWGLF/RESONANCES/AliRsnPIDManager.cxx
deleted file mode 100644 (file)
index 925391a..0000000
+++ /dev/null
@@ -1,120 +0,0 @@
-#include <TEntryList.h>
-
-#include "AliLog.h"
-#include "AliPID.h"
-
-#include "AliRsnCutSet.h"
-
-#include "AliRsnPIDManager.h"
-
-ClassImp(AliRsnPIDManager)
-
-//_____________________________________________________________________________
-AliRsnPIDManager::AliRsnPIDManager(const char *name, const char *title) : TNamed(name, title)
-{
-//
-// Default constructor.
-//
-   AliDebug(AliLog::kDebug + 10, "<-");
-   AliDebug(AliLog::kDebug + 10, "->");
-}
-
-//_____________________________________________________________________________
-AliRsnPIDManager::~AliRsnPIDManager()
-{
-   //
-   // Destructor
-   //
-   AliDebug(AliLog::kDebug + 10, "<-");
-   for (Int_t iCharge = 0; iCharge < 2; iCharge++) fIdParticles[iCharge].Delete();
-   AliDebug(AliLog::kDebug + 10, "->");
-}
-
-void AliRsnPIDManager::Print(Option_t *option) const
-{
-   TNamed::Print(option);
-
-   TEntryList *el;
-   AliRsnCutSet *cut;
-   for (Int_t iCharge = 0; iCharge < 2; iCharge++) {
-      for (Int_t iParticle = 0; iParticle < AliPID::kSPECIES; iParticle++) {
-         cut = (AliRsnCutSet *) fCuts.At(iParticle);
-         if (!cut) continue;
-         el = (TEntryList *)fIdParticles[iCharge].At(iParticle);
-         if (el) AliInfo(Form("%d %d %lld %s", iCharge, iParticle, el->GetN(), cut->GetName()));
-      }
-   }
-}
-
-void AliRsnPIDManager::Init()
-{
-   for (Int_t iCharge = 0; iCharge < 2; iCharge++) {
-      for (Int_t iParticle = 0; iParticle < AliPID::kSPECIES; iParticle++) {
-         fIdParticles[iCharge].Add(new TEntryList());
-//          fCuts.Add(new AliRsnCutSet("", AliRsnTarget::kDaughter));
-      }
-   }
-}
-
-
-void AliRsnPIDManager::Reset()
-{
-   TEntryList *el;
-   for (Int_t iCharge = 0; iCharge < 2; iCharge++) {
-      for (Int_t iParticle = 0; iParticle < AliPID::kSPECIES; iParticle++) {
-         el = (TEntryList *)fIdParticles[iCharge].At(iParticle);
-         el->Reset();
-      }
-   }
-}
-
-
-TEntryList *AliRsnPIDManager::GetParticles(const Int_t &charge, const Int_t &pidId)
-{
-   return (TEntryList *)fIdParticles[charge].At(pidId);
-}
-
-void AliRsnPIDManager::SetCut(AliRsnCutSet *cut, const Int_t &pidId)
-{
-   if (!cut) return;
-   if (!fCuts.GetEntriesFast()) Init();
-   fCuts.AddAt(cut, pidId);
-}
-
-void AliRsnPIDManager::ApplyCuts(AliRsnEvent *ev)
-{
-
-   // Loop over event and add entruies to entry list
-   Int_t numTracks = ev->GetRefESD()->GetNumberOfTracks();
-   Int_t iTrack;
-   AliRsnDaughter daughter;
-   for (iTrack = 0; iTrack < numTracks; iTrack++) {
-      ev->SetDaughter(daughter, iTrack, AliRsnDaughter::kTrack);
-      daughter.SetRsnID(iTrack);
-      CheckTrack(&daughter, iTrack);
-   }
-
-}
-
-void AliRsnPIDManager::CheckTrack(AliRsnDaughter *d, const Int_t &id)
-{
-   TEntryList *el;
-   AliRsnCutSet *cut;
-   TString cutName;
-   for (Int_t iParticle = 0; iParticle < AliPID::kSPECIES; iParticle++) {
-
-      cut = (AliRsnCutSet *) fCuts.At(iParticle);
-      if (!cut) continue;
-      cutName = cut->GetName();
-      if (!cutName.IsNull()) {
-         if (!cut->IsSelected(d)) continue;
-         if (d->IsPos()) {
-            el = (TEntryList *)fIdParticles[0].At(iParticle);
-            el->Enter(id);
-         } else if (d->IsNeg()) {
-            el = (TEntryList *)fIdParticles[1].At(iParticle);
-            el->Enter(id);
-         }
-      }
-   }
-}
diff --git a/PWGLF/RESONANCES/AliRsnPIDManager.h b/PWGLF/RESONANCES/AliRsnPIDManager.h
deleted file mode 100644 (file)
index 3806ec1..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef ALIRSNPIDMANAGER_H
-#define ALIRSNPIDMANAGER_H
-
-#include "TNamed.h"
-#include <TObjArray.h>
-
-class AliRsnDaughter;
-class AliRsnCutSet;
-class TEntryList;
-class AliRsnEvent;
-class AliRsnPIDManager : public TNamed {
-
-public:
-   AliRsnPIDManager(const char *name = "name", const char *title = "title");
-   virtual ~AliRsnPIDManager();
-
-   virtual void Print(Option_t *option = "") const;
-   void Init();
-   void Reset();
-
-   void SetCut(AliRsnCutSet *cut, const Int_t &pidId);
-   TEntryList *GetParticles(const Int_t &charge, const Int_t &pidId);
-
-   void ApplyCuts(AliRsnEvent *ev);
-
-private:
-
-   TObjArray fIdParticles[2];
-   TObjArray fCuts;
-
-
-   void CheckTrack(AliRsnDaughter *d, const Int_t &id);
-
-   AliRsnPIDManager(const AliRsnPIDManager &copy);
-   AliRsnPIDManager &operator=(const AliRsnPIDManager &copy);
-
-   ClassDef(AliRsnPIDManager, 1)
-};
-
-#endif
diff --git a/PWGLF/RESONANCES/AliRsnValuePID.cxx b/PWGLF/RESONANCES/AliRsnValuePID.cxx
deleted file mode 100644 (file)
index 4fd1bfe..0000000
+++ /dev/null
@@ -1,232 +0,0 @@
-//
-// AliRsnValuePID
-// Implementation of values related to PID
-// which can be used to monitor or check cuts
-// based on tolerance ranges between detector signals
-// and expected responses for particle species
-//
-
-#include <Riostream.h>
-
-#include "AliVTrack.h"
-#include "AliESDtrack.h"
-#include "AliAODTrack.h"
-
-#include "AliPIDResponse.h"
-#include "AliAnalysisManager.h"
-#include "AliInputEventHandler.h"
-
-
-#include "AliRsnValuePID.h"
-
-ClassImp(AliRsnValuePID)
-
-//__________________________________________________________________________________________________
-AliRsnValuePID::AliRsnValuePID() :
-   AliRsnValue(),
-   fSpecies(AliPID::kUnknown),
-   fValuePID(kValues),
-   fPID(0x0)
-{
-//
-// Dummy constructor
-//
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-
-   SetTargetType(AliRsnTarget::kDaughter);
-}
-
-//__________________________________________________________________________________________________
-AliRsnValuePID::AliRsnValuePID
-(const char *name, EValuePID type, AliPID::EParticleType species, Int_t nbins, Double_t min, Double_t max) :
-   AliRsnValue(name, nbins, min, max),
-   fSpecies(species),
-   fValuePID(type),
-   fPID(0x0)
-{
-//
-// Constructor 1 (fixed bins with number of bins, or no bins)
-//
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-
-   SetTargetType(AliRsnTarget::kDaughter);
-}
-
-//__________________________________________________________________________________________________
-AliRsnValuePID::AliRsnValuePID
-(const char *name, EValuePID type, AliPID::EParticleType species, Double_t min, Double_t max, Double_t step) :
-   AliRsnValue(name, min, max, step),
-   fSpecies(species),
-   fValuePID(type),
-   fPID(0x0)
-{
-//
-// Constructor 2 (fixed bins with step)
-//
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-
-   SetTargetType(AliRsnTarget::kDaughter);
-}
-
-//__________________________________________________________________________________________________
-AliRsnValuePID::AliRsnValuePID
-(const char *name, EValuePID type, AliPID::EParticleType species, Int_t nbins, Double_t *array) :
-   AliRsnValue(name, nbins, array),
-   fSpecies(species),
-   fValuePID(type),
-   fPID(0x0)
-{
-//
-// Constructor 3 (variable bins)
-//
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-
-   SetTargetType(AliRsnTarget::kDaughter);
-}
-
-//__________________________________________________________________________________________________
-AliRsnValuePID::AliRsnValuePID(const AliRsnValuePID &copy) :
-   AliRsnValue(copy),
-   fSpecies(copy.fSpecies),
-   fValuePID(copy.fValuePID),
-   fPID(copy.fPID)
-{
-//
-// Copy constructor
-//
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-}
-
-//__________________________________________________________________________________________________
-AliRsnValuePID &AliRsnValuePID::operator=(const AliRsnValuePID &copy)
-{
-//
-// Assignment operator
-//
-
-   AliRsnValue::operator=(copy);
-   if (this == &copy)
-      return *this;
-   fValuePID = copy.fValuePID;
-   fSpecies = copy.fSpecies;
-   fPID = copy.fPID;
-
-   Int_t i;
-   for (i = 0; i < AliPID::kSPECIES; i++) fTOFtimes[i] = fTOFsigma[i] = 0.0;
-
-   return (*this);
-}
-
-//__________________________________________________________________________________________________
-Bool_t AliRsnValuePID::Eval(TObject *object, Bool_t)
-{
-//
-// Evaluation function
-//
-
-   if (fValuePID != kITSsignal && fValuePID != kTPCsignal && !fPID) InitializePID();
-   if (!fPID) {
-      AliError("PID not correctly initialized");
-      fComputedValue = 0.0;
-      return kFALSE;
-   }
-   if (!TargetOK(object)) return kFALSE;
-
-   AliVTrack *vtrack = fDaughter->GetRefVtrack();
-
-   switch (fValuePID) {
-      case kITSsignal:
-         fComputedValue = vtrack->GetITSsignal();
-         return kTRUE;
-      case kITSnsigma:
-         fComputedValue = fPID->NumberOfSigmasITS(vtrack, fSpecies);
-         return kTRUE;
-      case kTPCsignal:
-         fComputedValue = vtrack->GetTPCsignal();
-         return kTRUE;
-      case kTPCnsigma:
-         fComputedValue = fPID->NumberOfSigmasTPC(vtrack, fSpecies);
-         return kTRUE;
-      case kTOFsignal:
-         if (!TOFComputations(vtrack)) return kFALSE;
-         fComputedValue = (vtrack->GetTOFsignal() - fPID->GetTOFResponse().GetStartTime(vtrack->P()));
-         return kTRUE;
-      case kTOFnsigma:
-         if (!TOFComputations(vtrack)) return kFALSE;
-         fComputedValue = fPID->NumberOfSigmasTOF(vtrack, fSpecies);
-         return kTRUE;
-      case kTOFtime:
-         if (!TOFComputations(vtrack)) return kFALSE;
-         fComputedValue = fTOFtimes[(Int_t)fSpecies];
-         return kTRUE;
-      case kTOFsigma:
-         if (!TOFComputations(vtrack)) return kFALSE;
-         fComputedValue = fTOFsigma[(Int_t)fSpecies];
-         return kTRUE;
-      default:
-         AliError("Unrecognized option");
-         fComputedValue = 0.0;
-         return kFALSE;
-   }
-}
-
-//__________________________________________________________________________________________________
-void AliRsnValuePID::Print(Option_t *) const
-{
-//
-// Printout
-//
-
-   AliRsnValue::Print();
-}
-
-//__________________________________________________________________________________________________
-void AliRsnValuePID::InitializePID()
-{
-//
-// Initialize PID object
-//
-
-   AliAnalysisManager   *man = AliAnalysisManager::GetAnalysisManager();
-   AliInputEventHandler *inh = (AliInputEventHandler *)man->GetInputEventHandler();
-
-   fPID = inh->GetPIDResponse();
-}
-
-//__________________________________________________________________________________________________
-Bool_t AliRsnValuePID::TOFComputations(AliVTrack *vtrack)
-{
-//
-// Make TOF computations
-//
-
-   if (vtrack->InheritsFrom(AliESDtrack::Class())) {
-      AliESDtrack *track = (AliESDtrack *)vtrack;
-      track->GetIntegratedTimes(fTOFtimes);
-      Int_t i;
-      for (i = 0; i < AliPID::kSPECIES; i++) {
-         fTOFsigma[i] = fPID->GetTOFResponse().GetExpectedSigma(track->GetP(), fTOFtimes[i], AliPID::ParticleMass(i));
-      }
-      return kTRUE;
-   } else if (vtrack->InheritsFrom(AliAODTrack::Class())) {
-      AliAODTrack *track = (AliAODTrack *)vtrack;
-      AliAODPid *pidObj = track->GetDetPid();
-      if (!pidObj) return kFALSE;
-      pidObj->GetIntegratedTimes(fTOFtimes);
-      pidObj->GetTOFpidResolution(fTOFsigma);
-      return kTRUE;
-   } else {
-      return kFALSE;
-   }
-}
-
diff --git a/PWGLF/RESONANCES/AliRsnValuePID.h b/PWGLF/RESONANCES/AliRsnValuePID.h
deleted file mode 100644 (file)
index 95248a7..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-#ifndef ALIRSNVALUEPID_H
-#define ALIRSNVALUEPID_H
-
-//
-// AliRsnValuePID
-// Implementation of values related to PID
-// which can be used to monitor or check cuts
-// based on tolerance ranges between detector signals
-// and expected responses for particle species
-//
-
-#include "AliPID.h"
-#include "AliRsnValue.h"
-
-class AliVTrack;
-class AliPIDResponse;
-
-class AliRsnValuePID : public AliRsnValue {
-
-public:
-
-   enum EValuePID {
-      kITSsignal,
-      kITSnsigma,
-      kTPCsignal,
-      kTPCnsigma,
-      kTOFsignal,
-      kTOFnsigma,
-      kTOFtime,
-      kTOFsigma,
-      kValues
-   };
-
-   AliRsnValuePID();
-   AliRsnValuePID(const char *name, EValuePID type, AliPID::EParticleType species, Int_t nbins = 0, Double_t min = 0.0, Double_t max = 0.0);
-   AliRsnValuePID(const char *name, EValuePID type, AliPID::EParticleType species, Double_t min, Double_t max, Double_t step);
-   AliRsnValuePID(const char *name, EValuePID type, AliPID::EParticleType species, Int_t nbins, Double_t *array);
-   AliRsnValuePID(const AliRsnValuePID &copy);
-   AliRsnValuePID &operator=(const AliRsnValuePID &copy);
-
-   virtual ~AliRsnValuePID() { }
-
-   void            SetValuePID(EValuePID type) {fValuePID = type;}
-   EValuePID       GetValuePID() const         {return fValuePID;}
-
-   virtual Bool_t  Eval(TObject *object, Bool_t useMC = kFALSE);
-   virtual void    Print(Option_t *option = "") const;
-
-protected:
-
-   void   InitializePID();
-   Bool_t TOFComputations(AliVTrack *track);
-
-   AliPID::EParticleType  fSpecies;                    //  particle species
-   EValuePID              fValuePID;                   //  output object
-   AliPIDResponse        *fPID;                        //  PID response object
-   Double_t               fTOFtimes[AliPID::kSPECIES]; //! TOF times
-   Double_t               fTOFsigma[AliPID::kSPECIES]; //! TOF sigma
-
-   ClassDef(AliRsnValuePID,1)                          //   AliRsnValuePID class
-
-};
-
-#endif
diff --git a/PWGLF/RESONANCES/AliRsnValueStd.cxx b/PWGLF/RESONANCES/AliRsnValueStd.cxx
deleted file mode 100644 (file)
index cea94b7..0000000
+++ /dev/null
@@ -1,728 +0,0 @@
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-
-////////////////////////////////////////////////////////////////////////////////
-//
-//  This class contains all code which is used to compute any of the values
-//  which can be of interest within a resonance analysis. Besides the obvious
-//  invariant mass, it allows to compute other utility values on all possible
-//  targets, in order to allow a wide spectrum of binning and checks.
-//  When needed, this object can also define a binning in the variable which
-//  it is required to compute, which is used for initializing axes of output
-//  histograms (see AliRsnFunction).
-//  The value computation requires this object to be passed the object whose
-//  informations will be used. This object can be of any allowed input type
-//  (track, pair, event), then this class must inherit from AliRsnTarget.
-//  Then, when value computation is attempted, a check on target type is done
-//  and computation is successful only if expected target matches that of the
-//  passed object.
-//  In some cases, the value computation can require a support external object,
-//  which must then be passed to this class. It can be of any type inheriting
-//  from TObject.
-//
-//  authors: A. Pulvirenti (alberto.pulvirenti@ct.infn.it)
-//           M. Vala (martin.vala@cern.ch)
-//
-////////////////////////////////////////////////////////////////////////////////
-
-#include "AliESDtrackCuts.h"
-#include "AliESDpid.h"
-#include "AliAODPid.h"
-#include "AliCentrality.h"
-
-#include "AliRsnEvent.h"
-#include "AliRsnDaughter.h"
-#include "AliRsnMother.h"
-#include "AliRsnPairDef.h"
-#include "AliRsnDaughterDef.h"
-
-#include "AliRsnValueStd.h"
-
-ClassImp(AliRsnValueStd)
-
-//_____________________________________________________________________________
-AliRsnValueStd::AliRsnValueStd() :
-   AliRsnValue(),
-   fValueType(kValueTypes),
-   fSupportObject(0x0)
-{
-//
-// Default constructor without arguments.
-// Initialize data members to meaningless values.
-// This method is provided for ROOT streaming,
-// but should never be used directly by a user.
-//
-}
-
-//_____________________________________________________________________________
-AliRsnValueStd::AliRsnValueStd
-(const char *name, EValueType type, Int_t nbins, Double_t min, Double_t max) :
-   AliRsnValue(name),
-   fValueType(type),
-   fSupportObject(0x0)
-{
-//
-// Main constructor (version 1).
-// This constructor defines in meaningful way all data members,
-// and defined a fixed binnings, subdividing the specified interval
-// into that many bins as specified in the integer argument.
-// ---
-// This method is also the entry point for all instances
-// of this class which don't need to do binning (e.g.: TNtuple inputs),
-// since arguments 3 to 5 have default values which don't create any
-// binning array, in order not to allocate memory when this is useless.
-//
-
-   SetTargetType(TargetType(type));
-   SetBins(nbins, min, max);
-}
-
-//_____________________________________________________________________________
-AliRsnValueStd::AliRsnValueStd
-(const char *name, EValueType type, Double_t min, Double_t max, Double_t step) :
-   AliRsnValue(name),
-   fValueType(type),
-   fSupportObject(0x0)
-{
-//
-// Main constructor (version 2).
-// This constructor defines in meaningful way all data members
-// and creates enough equal bins of the specified size to cover
-// the required interval.
-//
-
-   SetTargetType(TargetType(type));
-   SetBins(min, max, step);
-}
-
-//_____________________________________________________________________________
-AliRsnValueStd::AliRsnValueStd
-(const char *name, EValueType type, Int_t nbins, Double_t *array) :
-   AliRsnValue(name),
-   fValueType(type),
-   fSupportObject(0x0)
-{
-//
-// Main constructor (version 3).
-// This constructor defines in meaningful way all data members
-// and creates a set of variable bins delimited by the passed array.
-//
-
-   SetTargetType(TargetType(type));
-   SetBins(nbins, array);
-}
-
-//_____________________________________________________________________________
-AliRsnValueStd::AliRsnValueStd(const AliRsnValueStd &copy) :
-   AliRsnValue(copy),
-   fValueType(copy.fValueType),
-   fSupportObject(copy.fSupportObject)
-{
-//
-// Copy constructor.
-// Duplicates the binning array and copies all settings.
-//
-}
-
-//_____________________________________________________________________________
-AliRsnValueStd &AliRsnValueStd::operator=(const AliRsnValueStd &copy)
-{
-//
-// Assignment operator.
-// Works like copy constructor.
-//
-
-   AliRsnValue::operator=(copy);
-   if (this == &copy)
-      return *this;
-   fSupportObject = copy.fSupportObject;
-   fValueType = copy.fValueType;
-
-   return (*this);
-}
-
-//_____________________________________________________________________________
-const char *AliRsnValueStd::GetValueTypeName() const
-{
-//
-// This method returns a string to give a name to each possible
-// computation value.
-//
-
-   switch (fValueType) {
-      case kTrackP:               return "SingleTrackPtot";
-      case kTrackPt:              return "SingleTrackPt";
-      case kTrackPtpc:            return "SingleTrackPtpc";
-      case kTrackEta:             return "SingleTrackEta";
-      case kTrackY:               return "SingleTrackRapidity";
-      case kTrackITSsignal:       return "SingleTrackITSsignal";
-      case kTrackTPCsignal:       return "SingleTrackTPCsignal";
-      case kTrackTOFsignal:       return "SingleTrackTOFsignal";
-      case kTrackTOFbeta:         return "SingleTrackTOFbeta";
-      case kTrackLength:          return "SingleTrackLength";
-
-      case kPairP1:               return "PairPtotDaughter1";
-      case kPairP2:               return "PairPtotDaughter2";
-      case kPairP1t:              return "PairPtDaughter1";
-      case kPairP2t:              return "PairPtDaughter2";
-      case kPairP1z:              return "PairPzDaughter1";
-      case kPairP2z:              return "PairPzDaughter2";
-      case kPairInvMass:          return "PairInvMass";
-      case kPairInvMassMC:        return "PairInvMassMC";
-      case kPairInvMassRes:       return "PairInvMassResolution";
-      case kPairPt:               return "PairPt";
-      case kPairPz:               return "PairPz";
-      case kPairEta:              return "PairEta";
-      case kPairMt:               return "PairMt";
-      case kPairY:                return "PairY";
-      case kPairPhi:              return "PairPhi";
-      case kPairPhiMC:            return "PairPhiMC";
-      case kPairPtRatio:          return "PairPtRatio";
-      case kPairDipAngle:         return "PairDipAngle";
-      case kPairCosThetaStar:     return "PairCosThetaStar";
-      case kPairQInv:             return "PairQInv";
-      case kPairAngleToLeading:   return "PairAngleToLeading";
-
-      case kEventLeadingPt:       return "EventLeadingPt";
-      case kEventMult:            return "EventMult";
-      case kEventMultMC:          return "EventMultMC";
-      case kEventMultESDCuts:     return "EventMultESDCuts";
-      case kEventMultSPD:         return "EventMultSPD";
-      case kEventVz:              return "EventVz";
-      case kEventCentralityV0:    return "EventCentralityV0";
-      case kEventCentralityTrack: return "EventCentralityTrack";
-      case kEventCentralityCL1:   return "EventCentralityCL1";
-      default:                    return "Undefined";
-   }
-}
-
-//_____________________________________________________________________________
-Bool_t AliRsnValueStd::Eval(TObject *object, Bool_t useMC)
-{
-//
-// Evaluation of the required value.
-// Checks that the passed object is of the right type
-// and if this check is successful, computes the required value.
-// The output of the function tells if computing was successful,
-// and the values must be taken with GetValue().
-//
-
-   // utility variables
-   Bool_t         success;
-   const Double_t fgkVeryBig = 1E20;
-   Double_t       time;
-   Int_t          leadingID = -1;
-   ULong_t        status = 0x0;
-
-   // coherence check, which also casts object
-   // to AliRsnTarget data members and returns kFALSE
-   // in case the object is NULL
-   if (!TargetOK(object)) return kFALSE;
-
-   // these variables are initialized
-   // from the target object, once it
-   // is casted to one of the expected
-   // types (daughter/mother/event)
-   // -- not all are initialized always
-   TLorentzVector pRec;          // 4-momentum for single track or pair sum (reco)
-   TLorentzVector pSim;          // 4-momentum for single track or pair sum (MC)
-   TLorentzVector pRec0;         // 4-momentum of first daughter (reco)
-   TLorentzVector pSim0;         // 4-momentum of first daughter (MC)
-   TLorentzVector pRec1;         // 4-momentum of second daughter (reco)
-   TLorentzVector pSim1;         // 4-momentum of second daughter (MC)
-   AliESDEvent   *esdev  = 0x0;  // reference ESD event
-   AliAODEvent   *aodev  = 0x0;  // reference AOD event
-   AliESDtrack   *esdt   = 0x0;  // reference ESD track
-   AliAODTrack   *aodt   = 0x0;  // reference AOD track
-   AliAODPid     *pidObj = 0x0;  // reference AOD PID object
-
-   // initialize the above 4-vectors according to the
-   // expected target type (which has been checked above)
-   // in particular, the 'fEvent' data member of base AliRsnTarget
-   // will be *always* well initialized if the TargetOK() returns kTRUE
-   switch (fTargetType) {
-      case AliRsnTarget::kDaughter:
-         pRec = fDaughter->Prec();
-         pSim = fDaughter->Psim();
-         esdt = fDaughter->GetRefESDtrack();
-         aodt = fDaughter->GetRefAODtrack();
-         if (aodt) pidObj = aodt->GetDetPid();
-         break;
-      case AliRsnTarget::kMother:
-         pRec  = fMother->Sum();
-         pSim  = fMother->SumMC();
-         pRec0 = fMother->GetDaughter(0)->Prec();
-         pRec1 = fMother->GetDaughter(1)->Prec();
-         pSim0 = fMother->GetDaughter(0)->Psim();
-         pSim1 = fMother->GetDaughter(1)->Psim();
-         break;
-      case AliRsnTarget::kEvent:
-         break;
-      default:
-         AliError(Form("[%s] Wrong type", GetName()));
-         return kFALSE;
-   }
-   leadingID = fEvent->GetLeadingParticleID();
-   esdev = fEvent->GetRefESD();
-   aodev = fEvent->GetRefAOD();
-
-   // if leading index is negative, assume that leading particle was not searched
-   // and then searches for it
-   if (leadingID < 0) {
-      fEvent->SelectLeadingParticle();
-      leadingID = fEvent->GetLeadingParticleID();
-   }
-
-   if (esdt) status = esdt->GetStatus();
-   if (aodt) status = aodt->GetStatus();
-
-   // these objects are all types of supports
-   // which could be needed for some values
-   AliRsnPairDef     *pairDef     = 0x0;
-   AliRsnDaughterDef *daughterDef = 0x0;
-   AliESDpid         *esdPID      = 0x0;
-   if (fSupportObject) {
-      if (fSupportObject->InheritsFrom(AliRsnPairDef    ::Class())) pairDef     = static_cast<AliRsnPairDef *>(fSupportObject);
-      if (fSupportObject->InheritsFrom(AliRsnDaughterDef::Class())) daughterDef = static_cast<AliRsnDaughterDef *>(fSupportObject);
-      if (fSupportObject->InheritsFrom(AliESDpid        ::Class())) esdPID      = static_cast<AliESDpid *>(fSupportObject);
-   }
-
-   // compute value depending on types in the enumeration
-   // if the type does not match any available choice, or if
-   // the computation is not doable due to any problem
-   // (not initialized support object, wrong values, risk of floating point errors)
-   // the method returng kFALSE and sets the computed value to a meaningless number
-   switch (fValueType) {
-      case kTrackP:
-         // single track:
-         // total momentum
-         fComputedValue = useMC ? pSim.Vect().Mag() : pRec.Vect().Mag();
-         return kTRUE;
-      case kTrackPt:
-         // single track:
-         // transverse momentum
-         fComputedValue = useMC ? pSim.Perp() : pRec.Perp();
-         return kTRUE;
-      case kTrackPtpc:
-         // single track:
-         // transverse momentum
-         if (esdt) {
-            if (esdt->GetInnerParam()) {
-               fComputedValue = esdt->GetInnerParam()->P();
-               return kTRUE;
-            } else {
-               AliError(Form("[%s] TPC inner param is not initialized", GetName()));
-               return kFALSE;
-            }
-         }
-         else if (aodt && pidObj) {
-            fComputedValue = pidObj->GetTPCmomentum();
-            return kTRUE;
-         } else {
-            AliError(Form("[%s] Cannot retrieve TPC momentum", GetName()));
-            return kFALSE;
-         }
-      case kTrackEta:
-         // single track:
-         // pseudo-rapidity
-         fComputedValue = useMC ? pSim.Eta() : pRec.Eta();
-         return kTRUE;
-      case kTrackY:
-         // single track:
-         // rapidity (requires an AliRsnDaughterDef support)
-         if (daughterDef) {
-            pRec.SetXYZM(pRec.X(), pRec.Y(), pRec.Z(), daughterDef->GetMass());
-            pSim.SetXYZM(pSim.X(), pSim.Y(), pSim.Z(), daughterDef->GetMass());
-            fComputedValue = useMC ? pSim.Rapidity() : pRec.Rapidity();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Required a correctly initialized AliRsnDaughterDef support object to compute this value", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kTrackITSsignal:
-         // single track:
-         // ITS signal (successful only for tracks)
-         // works only if the status is OK
-         if ((status & AliESDtrack::kITSin) == 0) {
-            AliDebug(AliLog::kDebug + 2, "Rejecting non-ITS track");
-            return kFALSE;
-         }
-         if (esdt) {
-            fComputedValue = esdt->GetITSsignal();
-            return kTRUE;
-         }
-         else if (aodt && pidObj) {
-            fComputedValue = pidObj->GetITSsignal();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Detector signals can be computed only on reconstructed tracks", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kTrackTPCsignal:
-         // single track:
-         // TPC signal (successful only for tracks)
-         // works only if the status is OK
-         if ((status & AliESDtrack::kTPCin) == 0) {
-            AliDebug(AliLog::kDebug + 2, "Rejecting non-TPC track");
-            return kFALSE;
-         }
-         if (esdt) {
-            fComputedValue = esdt->GetTPCsignal();
-            return kTRUE;
-         }
-         else if (aodt && pidObj) {
-            fComputedValue = pidObj->GetTPCsignal();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Detector signals can be computed only on reconstructed tracks", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kTrackTOFsignal:
-         // single track:
-         // TOF signal (successful only for tracks, for ESD requires an AliESDpid support)
-         // works only if the status is OK
-         if ((status & AliESDtrack::kTOFout) == 0 || (status & AliESDtrack::kTIME) == 0) {
-            AliDebug(AliLog::kDebug + 2, "Rejecting non-TOF track");
-            return kFALSE;
-         }
-         if (esdt) {
-            if (!esdPID || !esdev) {
-               AliError(Form("[%s] Required a correctly initialized AliRsnEvent and AliESDpid support object to compute this value with ESDs", GetName()));
-               fComputedValue = fgkVeryBig;
-               return kFALSE;
-            }
-            else {
-               esdPID->SetTOFResponse(esdev, AliESDpid::kTOF_T0);
-               fComputedValue = (esdt->GetTOFsignal() - esdPID->GetTOFResponse().GetStartTime(esdt->P()));
-               return kTRUE;
-            }
-         }
-         else if (aodt && pidObj) {
-            fComputedValue = pidObj->GetTOFsignal();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Detector signals can be computed only on reconstructed tracks", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kTrackTOFbeta:
-         // single track:
-         // TOF beta (successful only for tracks, for ESD requires an AliESDpid support)
-         if (esdt) {
-            if (!esdPID) {
-               AliError(Form("[%s] Required a correctly initialized AliESDpid support object to compute this value with ESDs", GetName()));
-               fComputedValue = fgkVeryBig;
-               return kFALSE;
-            }
-            else if (!esdev) {
-               AliError(Form("[%s] Required a correctly initialized AliESDEvent to compute this value with ESDs", GetName()));
-               fComputedValue = fgkVeryBig;
-               return kFALSE;
-            }
-            else {
-               esdPID->SetTOFResponse(esdev, AliESDpid::kTOF_T0);
-               fComputedValue = esdt->GetIntegratedLength();
-               time = (esdt->GetTOFsignal() - esdPID->GetTOFResponse().GetStartTime(esdt->P()));
-               if (time > 0.0) {
-                  fComputedValue /= time;
-                  fComputedValue /= 2.99792458E-2;
-                  return kTRUE;
-               } else {
-                  fComputedValue = fgkVeryBig;
-                  return kFALSE;
-               }
-            }
-         }
-         else {
-            AliError(Form("[%s] Length information not available in AODs", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kTrackLength:
-         // single tracks:
-         // integrated length (computed only on ESDs)
-         if (esdt) {
-            fComputedValue = esdt->GetIntegratedLength();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Length information not available in AODs", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-         //---------------------------------------------------------------------------------------------------------------------
-      case kPairP1:
-         // pair:
-         // momentum of first daughter (which matches definition #1 in pairDef)
-         fComputedValue = useMC ? pSim0.Mag() : pRec0.Mag();
-         return kTRUE;
-      case kPairP2:
-         // pair:
-         // momentum of second daughter (which matches definition #2 in pairDef)
-         fComputedValue = useMC ? pSim1.Mag() : pRec1.Mag();
-         return kTRUE;
-      case kPairP1t:
-         // pair:
-         // transverse momentum of first daughter
-         fComputedValue = useMC ? pSim0.Perp() : pRec0.Perp();
-         return kTRUE;
-      case kPairP2t:
-         // pair:
-         // transverse momentum of second daughter
-         fComputedValue = useMC ? pSim1.Perp() : pRec1.Perp();
-         return kTRUE;
-      case kPairP1z:
-         // pair:
-         // longitudinal momentum of first daughter
-         fComputedValue = useMC ? pSim0.Z() : pRec0.Z();
-         return kTRUE;
-      case kPairP2z:
-         // pair:
-         // longitudinal momentum of second daughter
-         fComputedValue = useMC ? pSim1.Z() : pRec1.Z();
-         return kTRUE;
-      case kPairInvMass:
-         // pair:
-         // invariant mass
-         fComputedValue = useMC ? pSim.M() : pRec.M();
-         return kTRUE;
-      case kPairInvMassRes:
-         // pair:
-         // invariant mass resolution (requires MC)
-         if (TMath::Abs(pSim.M()) > 0.0) {
-            fComputedValue = (pSim.M() - pRec.M()) / pSim.M();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Caught a null MC mass", GetName()));
-            return kFALSE;
-         }
-      case kPairPt:
-         // pair:
-         // total transverse momentum
-         fComputedValue = useMC ? pSim.Perp() : pRec.Perp();
-         return kTRUE;
-      case kPairEta:
-         // pair:
-         // pseudo-rapidiry
-         fComputedValue = useMC ? pSim.Eta() : pRec.Eta();
-         return kTRUE;
-      case kPairMt:
-         // pair:
-         // transverse mass (requires an AliRsnPairDef to get mass hypothesis)
-         if (pairDef) {
-            pRec.SetXYZM(pRec.X(), pRec.Y(), pRec.Z(), pairDef->GetMotherMass());
-            pSim.SetXYZM(pSim.X(), pSim.Y(), pSim.Z(), pairDef->GetMotherMass());
-            fComputedValue = useMC ? pSim.Mt() : pRec.Mt();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Required a correctly initialized AliRsnPairDef support object to compute this value", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kPairY:
-         // pair:
-         // rapidity (requires an AliRsnPairDef to get mass hypothesis)
-         if (pairDef) {
-            pRec.SetXYZM(pRec.X(), pRec.Y(), pRec.Z(), pairDef->GetMotherMass());
-            pSim.SetXYZM(pSim.X(), pSim.Y(), pSim.Z(), pairDef->GetMotherMass());
-            fComputedValue = useMC ? pSim.Rapidity() : pRec.Rapidity();
-            return kTRUE;
-         }
-         else {
-            AliError(Form("[%s] Required a correctly initialized AliRsnPairDef support object to compute this value", GetName()));
-            fComputedValue = fgkVeryBig;
-            return kFALSE;
-         }
-      case kPairPhi:
-         // pair:
-         // phi angle of total momentum
-         fComputedValue = useMC ? pSim.Phi() : pRec.Phi();
-         return kTRUE;
-      case kPairPtRatio:
-         // pair:
-         // ratio of relative sum and difference of daughter transverse momenta
-         if (useMC) {
-            fComputedValue  = TMath::Abs(pSim0.Perp() - pSim1.Perp());
-            fComputedValue /= TMath::Abs(pSim0.Perp() + pSim1.Perp());
-         } else {
-            fComputedValue  = TMath::Abs(pRec0.Perp() - pRec1.Perp());
-            fComputedValue /= TMath::Abs(pRec0.Perp() + pRec1.Perp());
-         }
-         return kTRUE;
-      case kPairDipAngle:
-         // pair:
-         // dip-angle in the transverse-Z plane
-         // (used to check conversion electrons)
-         if (useMC) {
-            fComputedValue  = pSim0.Perp() * pSim1.Perp() + pSim0.Z() * pSim1.Z();
-            fComputedValue /= pSim0.Mag() * pSim1.Mag();
-         } else {
-            fComputedValue  = pRec0.Perp() * pRec1.Perp() + pRec0.Z() * pRec1.Z();
-            fComputedValue /= pRec0.Mag() * pRec1.Mag();
-         }
-         fComputedValue = TMath::Abs(TMath::ACos(fComputedValue));
-         return kTRUE;
-      case kPairCosThetaStar:
-         // pair:
-         // cosine of theta star angle
-         // (= angle of first daughter to the total momentum, in resonance rest frame)
-         fComputedValue = fMother->CosThetaStar(useMC);
-         return kTRUE;
-      case kPairQInv:
-         // pair:
-         // Q-invariant
-         pSim0 -= pSim1;
-         pRec0 -= pRec1;
-         fComputedValue = useMC ? pSim0.M() : pRec0.M();
-         return kTRUE;
-      case kPairAngleToLeading:
-         // pair:
-         // angle w.r. to leading particle (if any)
-         fComputedValue = fMother->AngleToLeading(success);
-         return success;
-         //---------------------------------------------------------------------------------------------------------------------
-      case kEventMult:
-         // event:
-         // multiplicity of tracks
-         fComputedValue = (Double_t)fEvent->GetMultiplicityFromTracks();
-         return (fComputedValue >= 0);
-      case kEventMultMC:
-         // event:
-         // multiplicity of MC tracks
-         fComputedValue = (Double_t)fEvent->GetMultiplicityFromMC();
-         return (fComputedValue >= 0);
-      case kEventMultESDCuts:
-         // event:
-         // multiplicity of good quality tracks
-         fComputedValue = fEvent->GetMultiplicityFromESDCuts();
-         return (fComputedValue >= 0);
-      case kEventMultSPD:
-         // event:
-         // multiplicity of good quality tracks
-         fComputedValue = fEvent->GetMultiplicityFromSPD();
-         return (fComputedValue >= 0);
-      case kEventLeadingPt:
-         // event:
-         // transverse momentum of leading particle
-         if (leadingID >= 0) {
-            AliRsnDaughter leadingPart = fEvent->GetDaughter(leadingID);
-            AliVParticle *ref = leadingPart.GetRef();
-            fComputedValue = ref->Pt();
-            return kTRUE;
-         } else {
-            AliError(Form("[%s] Leading ID has bad value (%d)", GetName(), leadingID));
-            return kFALSE;
-         }
-      case kEventVz:
-         // event:
-         // Z position of primary vertex
-         fComputedValue = fEvent->GetRef()->GetPrimaryVertex()->GetZ();
-         return kTRUE;
-      case kEventCentralityV0:
-         // event:
-         // centrality using V0 method
-         if (esdev) {
-            AliCentrality *centrality = esdev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("V0M");
-            return kTRUE;
-         } else if (aodev) {
-            AliCentrality *centrality = aodev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("V0M");
-            return kTRUE;
-         } else {
-            AliError(Form("[%s] Neither the ESD nor the AOD events are initialized", GetName()));
-            return kFALSE;
-         }
-      case kEventCentralityTrack:
-         // event:
-         // centrality using tracks method
-         if (esdev) {
-            AliCentrality *centrality = esdev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("TRK");
-            return kTRUE;
-         } else if (aodev) {
-            AliCentrality *centrality = aodev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("TRK");
-            return kTRUE;
-         } else {
-            AliError(Form("[%s] Neither the ESD nor the AOD events are initialized", GetName()));
-            return kFALSE;
-         }
-      case kEventCentralityCL1:
-         // event:
-         // centrality using CL1 method
-         if (esdev) {
-            AliCentrality *centrality = esdev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("CL1");
-            return kTRUE;
-         } else if (aodev) {
-            AliCentrality *centrality = aodev->GetCentrality();
-            fComputedValue = centrality->GetCentralityPercentile("CL1");
-            return kTRUE;
-         } else {
-            AliError(Form("[%s] Neither the ESD nor the AOD events are initialized", GetName()));
-            return kFALSE;
-         }
-      default:
-         AliError(Form("[%s] Invalid value type for this computation", GetName()));
-         return kFALSE;
-   }
-}
-
-//_____________________________________________________________________________
-void AliRsnValueStd::Print(Option_t *option) const
-{
-//
-// Print informations about this object
-//
-
-   AliInfo("=== VALUE INFO =================================================");
-   AliInfo(Form(" Name                  : %s", GetName()));
-   AliInfo(Form(" Type                  : %s", GetValueTypeName()));
-   AliInfo(Form(" Current computed value: %f", fComputedValue));
-   if (!strcmp(option, "BINS")) {
-      Int_t i;
-      for (i = 0; i < fBinArray.GetSize(); i++) {
-         AliInfo(Form(" Bin limit #%03d        = %f", i, fBinArray[i]));
-      }
-   }
-   AliInfo(Form(" Support object        : %s", (fSupportObject ? fSupportObject->ClassName() : " NO SUPPORT")));
-   AliInfo("=== END VALUE INFO =============================================");
-}
-
-//_____________________________________________________________________________
-RSNTARGET AliRsnValueStd::TargetType(EValueType type)
-{
-//
-// This method assigns the target to be expected by this object
-// in the computation, depending on its type chosen in the enum.
-//
-
-   if (type < kTrackValues)
-      return AliRsnTarget::kDaughter;
-   else if (type < kPairValues)
-      return AliRsnTarget::kMother;
-   else
-      return AliRsnTarget::kEvent;
-}
diff --git a/PWGLF/RESONANCES/AliRsnValueStd.h b/PWGLF/RESONANCES/AliRsnValueStd.h
deleted file mode 100644 (file)
index 1db1783..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-#ifndef ALIRSNVALUESTD_H
-#define ALIRSNVALUESTD_H
-
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-////////////////////////////////////////////////////////////////////////////////
-//
-//  Collection of all values which can be computed within the package
-//
-////////////////////////////////////////////////////////////////////////////////
-
-#include "AliRsnValue.h"
-
-class AliRsnValueStd : public AliRsnValue {
-public:
-
-   enum EValueType {
-      kTrackP,               // single track total momentum
-      kTrackPt,              // single track transverse momentum
-      kTrackPtpc,            // single track total momentum in the TPC inner wall
-      kTrackEta,             // single track pseudo-rapidity
-      kTrackY,               // single track rapidity
-      kTrackITSsignal,       // single track ITS signal
-      kTrackTPCsignal,       // single track TPC signal
-      kTrackTOFsignal,       // single track TOF signal
-      kTrackTOFbeta,         // single track beta from TOF
-      kTrackLength,          // single track integrated length
-      kTrackValues,          // --- limit for track values -----------------------------------------
-
-      kPairP1,               // total momentum of 1st daughter of a pair
-      kPairP2,               // total momentum of 2nd daughter of a pair
-      kPairP1t,              // transverse momentum of 1st daughter of a pair
-      kPairP2t,              // transverse momentum of 2nd daughter of a pair
-      kPairP1z,              // longitudinal momentum of 1st daughter of a pair
-      kPairP2z,              // longitudinal momentum of 2nd daughter of a pair
-      kPairInvMass,          // pair invariant mass (with reconstructed momenta)
-      kPairInvMassMC,        // pair invariant mass (with MC momenta)
-      kPairInvMassRes,       // pair invariant mass resolution
-      kPairPt,               // pair transverse momentum
-      kPairPz,               // pair longitudinal momentum
-      kPairEta,              // pair pseudo-rapidity
-      kPairMt,               // pair transverse mass (need a reference mass)
-      kPairY,                // pair rapidity (need a reference mass)
-      kPairPhi,              // pair azimuthal angle (with reconstructed momenta)
-      kPairPhiMC,            // pair azimuthal angle (with MC momenta)
-      kPairPtRatio,          // ratio |pt1 - pt2|/(pt1 + pt2) of daughter transverse momenta
-      kPairDipAngle,         // inverse cosine of the angle between daughter vector momenta
-      kPairCosThetaStar,     // polarization angle
-      kPairQInv,             // invariant relative momentum of the two daughters
-      kPairAngleToLeading,   // angle between pair momentum and leading particle
-      kPairValues,           // --- limit for pair values ------------------------------------------
-
-      kEventLeadingPt,       // transverse momentum of the event leading particle
-      kEventMult,            // multiplicity computed as the number of tracks
-      kEventMultMC,          // multiplicity from MC
-      kEventMultESDCuts,     // multiplicity of good quality tracks
-      kEventMultSPD,         // multiplicity from SPD
-      kEventVz,              // Z position of event primary vertex
-      kEventCentralityV0,    // event centrality (V0 method)
-      kEventCentralityTrack, // event centrality (tracks method)
-      kEventCentralityCL1,   // event centrality (CL1 method)
-      kValueTypes            // --- limit for event values (and global) ----------------------------
-   };
-
-   AliRsnValueStd();
-   AliRsnValueStd(const char *name, EValueType type, Int_t nbins = 0, Double_t min = 0.0, Double_t max = 0.0);
-   AliRsnValueStd(const char *name, EValueType type, Double_t min, Double_t max, Double_t step);
-   AliRsnValueStd(const char *name, EValueType type, Int_t nbins, Double_t *array);
-   AliRsnValueStd(const AliRsnValueStd &copy);
-   AliRsnValueStd &operator=(const AliRsnValueStd &copy);
-   virtual ~AliRsnValueStd() { /*does nothing, since pointers are not owned by this object*/ }
-
-   EValueType        GetValueType() const           {return fValueType;}
-   const char       *GetValueTypeName() const;
-   TObject          *GetSupportObject()             {return fSupportObject;}
-   void              SetSupportObject(TObject *obj) {fSupportObject = obj;}
-   void              SetValueType(EValueType type)  {fValueType = type; fTargetType = TargetType(type);}
-
-   virtual Bool_t    Eval(TObject *object, Bool_t useMC = kFALSE);
-   virtual void      Print(Option_t *option = "") const;
-   static  RSNTARGET TargetType(EValueType type);
-
-protected:
-
-   EValueType   fValueType;      // value type
-   TObject     *fSupportObject;  // support object needed for computing some of the values
-
-   ClassDef(AliRsnValueStd, 1)   // AliRsnValueStd class
-};
-
-#endif