]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/correlationHF/AliDxHFEParticleSelectionEl.cxx
Code skeleton for D0-electron correlations (Matthias)
[u/mrichter/AliRoot.git] / PWGHF / correlationHF / AliDxHFEParticleSelectionEl.cxx
CommitLineData
72c0a987 1// $Id$
2
3//**************************************************************************
4//* This file is property of and copyright by the ALICE Project *
5//* ALICE Experiment at CERN, All rights reserved. *
6//* *
7//* Primary Authors: Matthias Richter <Matthias.Richter@ift.uib.no> *
8//* Sedat Altinpinar <Sedat.Altinpinar@cern.ch> *
9//* Hege Erdal <hege.erdal@gmail.com> *
10//* *
11//* Permission to use, copy, modify and distribute this software and its *
12//* documentation strictly for non-commercial purposes is hereby granted *
13//* without fee, provided that the above copyright notice appears in all *
14//* copies and that both the copyright notice and this permission notice *
15//* appear in the supporting documentation. The authors make no claims *
16//* about the suitability of this software for any purpose. It is *
17//* provided "as is" without express or implied warranty. *
18//**************************************************************************
19
20/// @file AliDxHFEParticleSelectionEl.cxx
21/// @author Sedat Altinpinar, Hege Erdal, Matthias Richter
22/// @date 2012-03-19
23/// @brief D0 selection for D0-HFE correlation
24///
25
26#include "AliDxHFEParticleSelectionEl.h"
27#include "AliVParticle.h"
28#include "TObjArray.h"
29
30/// ROOT macro for the implementation of ROOT specific class methods
31ClassImp(AliDxHFEParticleSelectionEl)
32
33AliDxHFEParticleSelectionEl::AliDxHFEParticleSelectionEl(const char* opt)
34 : AliDxHFEParticleSelection(opt)
35{
36 // constructor
37 //
38 //
39 //
40 //
41}
42
43AliDxHFEParticleSelectionEl::~AliDxHFEParticleSelectionEl()
44{
45 // destructor
46}
47
48bool AliDxHFEParticleSelectionEl::IsSelected(AliVParticle* /*p*/)
49{
50 /// TODO: implement specific selection of D0 candidates
51 return true;
52}