00001 #ifndef userCuts_h
00002 #define userCuts_h
00003
00004 #include "Event/selectionManager.h"
00005
00006 00008
00009 \c userCuts should be implemented by the USER
00010 <ul>
00011 <li> The user cuts should be created in the constructor of this class. <br>
00012 <li> The user cuts should be added into the selectionManager in the constructor
00013 of this class. For that use the method \c addCut() of the selectionManager. <br>
00014 <li> All the user cuts should inherit from cutVI.
00015 <li> See centellaCuts for reference.
00016 </ul>
00017 */
00018
00019
00020
00021
00022 class userCuts
00023
00024 {
00025 public:
00027
00028 userCuts();
00030 ~userCuts(){};
00031 };
00032 #endif