//-*- Mode: C++ -*- // $Id$ //* This file is property of and copyright by the ALICE Project * //* ALICE Experiment at CERN, All rights reserved. * //* See cxx source for full Copyright notice * /// @file AliDxHFEParticleSelectionEl.h /// @author Sedat Altinpinar, Hege Erdal, Matthias Richter /// @date 2012-03-19 /// @brief Electron selection for D-HFE correlations /// #ifndef ALIDXHFEPARTICLESELECTIONEL_H #define ALIDXHFEPARTICLESELECTIONEL_H #include "AliDxHFEParticleSelection.h" /** * @class AliDxHFEParticleSelectionEl * Electron selection for D-HFE correlations, implements the specific * selection criteria. */ class AliDxHFEParticleSelectionEl : public AliDxHFEParticleSelection { public: /// constructor AliDxHFEParticleSelectionEl(const char* opt=""); /// destructor virtual ~AliDxHFEParticleSelectionEl(); /// overloaded from AliDxHFEParticleSelection: check particle virtual bool IsSelected(AliVParticle* p); protected: private: /// copy contructor prohibited AliDxHFEParticleSelectionEl(const AliDxHFEParticleSelectionEl&); /// assignment operator prohibited AliDxHFEParticleSelectionEl& operator=(const AliDxHFEParticleSelectionEl&); ClassDef(AliDxHFEParticleSelectionEl, 1); }; #endif