// ============================================================================= // @file TPySelectorFix.h // @author Albert Puig Navarro (albert.puig@cern.ch) // @date 29/06/2010 // @comments Extracted from V. Belyaev's code in KaliCalo // ============================================================================= #ifndef TPYSELECTORFIX_H #define TPYSELECTORFIX_H 1 // Include files #include "TPySelector.h" // ============================================================================ // @class TPySelectorFix // The temporary fix to allow the "normal" usage of instances of // TPySelector-derived classes // ============================================================================ class TPySelectorFix: public TPySelector { public: ClassDef(TPySelectorFix, 1) ; /// constructor TPySelectorFix (TTree* tree=0, PyObject* self= 0): TPySelector(tree, self) {} }; #endif // TPYSELECTORFIX_H // EOF