X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoCorrFctn.cxx;fp=PWGCF%2FFEMTOSCOPY%2FAliFemto%2FAliFemtoCorrFctn.cxx;h=0000000000000000000000000000000000000000;hb=c627660e3ea095ed462f5ce4ad36a184f40e0dd7;hp=0e25566a51729fb564167838f7f1844c86d63a41;hpb=d85f6819269447083582dbf4349395fe419ff1f5;p=u%2Fmrichter%2FAliRoot.git diff --git a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCorrFctn.cxx b/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCorrFctn.cxx deleted file mode 100644 index 0e25566a517..00000000000 --- a/PWGCF/FEMTOSCOPY/AliFemto/AliFemtoCorrFctn.cxx +++ /dev/null @@ -1,21 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -/// AliFemtoCorrFctn - the pure virtual base class for correlation function /// -/// All correlation function classes must inherit from this one /// -//////////////////////////////////////////////////////////////////////////////// -#include "AliFemtoCorrFctn.h" - -void AliFemtoCorrFctn::AddRealPair(AliFemtoPair*) { cout << "Not implemented" << endl; } -void AliFemtoCorrFctn::AddMixedPair(AliFemtoPair*) { cout << "Not implemented" << endl; } - -AliFemtoCorrFctn::AliFemtoCorrFctn(const AliFemtoCorrFctn& /* c */):fyAnalysis(0),fPairCut(0x0) {} -AliFemtoCorrFctn::AliFemtoCorrFctn(): fyAnalysis(0),fPairCut(0x0) {/* no-op */} -void AliFemtoCorrFctn::SetAnalysis(AliFemtoAnalysis* analysis) { fyAnalysis = analysis; } -AliFemtoCorrFctn& AliFemtoCorrFctn::operator=(const AliFemtoCorrFctn& aCorrFctn) { if (this == &aCorrFctn) return *this; fyAnalysis = aCorrFctn.fyAnalysis; fPairCut = aCorrFctn.fPairCut; return *this; } - -void AliFemtoCorrFctn::EventBegin(const AliFemtoEvent* /* aEvent */) { /* no-op */ } -void AliFemtoCorrFctn::EventEnd(const AliFemtoEvent* /* aEvent */) { /* no-op */ } -void AliFemtoCorrFctn::SetPairSelectionCut(AliFemtoPairCut* aCut) { fPairCut = aCut; } - -#ifdef __ROOT__ -ClassImp(AliFemtoCorrFctn) -#endif