00001 #ifndef userDataDetector_h
00002 #define userDataDetector_h
00003
00004 00006
00007 \c userDataDetector should be implemented by the USER
00008 <ul>
00009 <li> The user detector transient data classes should be created in the constructor of this class. <br>
00010 <li> The user detector transient data classes should be added into the
00011 dataDetectorServer of the dataManager in the constructor of this class.
00012 For that use the following code line:<br>
00013 <b> dataManager::instance()->det()->addData("nameData", new dataClass()); </b><br>
00014 This a similar process of adding algorithms or cuts. See userAlgorithms.
00015 <li> All the user detector transient data classes should inherit from trsDataVI.
00016 </ul>
00017 */
00018
00019
00020
00021
00022 class userDataDetector
00023
00024 {
00025 public:
00026
00028
00029 userDataDetector(){};
00031 ~userDataDetector(){};
00032 };
00033 #endif