X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoSimpleAnalysis.h;fp=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoSimpleAnalysis.h;h=91ec2c041afdcdfaf45c4a475b044f92a79a34ad;hb=07abb027e9e7d6200a590184f03cc127c5b08c35;hp=912306dab359a0b2fa5807cb6c334d715cc50fe3;hpb=35b6fd78376d6b5414f73f20aa70f10bd8f463f5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoSimpleAnalysis.h b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoSimpleAnalysis.h index 912306dab35..91ec2c041af 100644 --- a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoSimpleAnalysis.h +++ b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoSimpleAnalysis.h @@ -18,6 +18,7 @@ #include "AliFemtoPicoEventCollection.h" #include "AliFemtoParticleCollection.h" #include "AliFemtoPicoEvent.h" +#include "AliFemtoV0SharedDaughterCut.h" class AliFemtoPicoEventCollectionVectorHideAway; @@ -51,6 +52,9 @@ class AliFemtoSimpleAnalysis : public AliFemtoAnalysis { void SetMinSizePartCollection(unsigned int minSize); void SetVerboseMode(Bool_t aVerbose); + + void SetV0SharedDaughterCut(Bool_t aPerform); + bool V0SharedDaughterCut(); unsigned int NumEventsToMix() const; void SetNumEventsToMix(const unsigned int& NumberOfEventsToMix); @@ -97,6 +101,7 @@ class AliFemtoSimpleAnalysis : public AliFemtoAnalysis { unsigned int fMinSizePartCollection; // Don't use event if it has fewer than this many particles passing ParticleCuts default 0 Bool_t fVerbose; + Bool_t fPerformSharedDaughterCut; #ifdef __ROOT__ ClassDef(AliFemtoSimpleAnalysis, 0) @@ -116,6 +121,7 @@ inline AliFemtoPicoEvent* AliFemtoSimpleAnalysis::CurrentPicoEvent() inline AliFemtoPicoEventCollection* AliFemtoSimpleAnalysis::MixingBuffer() {return fMixingBuffer;} inline bool AliFemtoSimpleAnalysis::AnalyzeIdenticalParticles() const { return (fFirstParticleCut==fSecondParticleCut); } +inline bool AliFemtoSimpleAnalysis::V0SharedDaughterCut() { return fPerformSharedDaughterCut; } // Set's inline void AliFemtoSimpleAnalysis::SetPairCut(AliFemtoPairCut* x) { fPairCut = x; x->SetAnalysis((AliFemtoAnalysis*)this);} @@ -131,5 +137,6 @@ inline int AliFemtoSimpleAnalysis::GetNeventsProcessed() const {return fNeventsP inline void AliFemtoSimpleAnalysis::SetMinSizePartCollection(unsigned int minSize){fMinSizePartCollection = minSize;} inline void AliFemtoSimpleAnalysis::SetVerboseMode(Bool_t aVerbose){fVerbose = aVerbose;} +inline void AliFemtoSimpleAnalysis::SetV0SharedDaughterCut(Bool_t aPerform) { fPerformSharedDaughterCut = aPerform; } #endif