00001 00002 // $Id: FilterStream.h,v 1.2 2005/02/22 21:41:07 bspeak Exp $ 00003 // 00004 // FilterStream 00005 // 00006 // Author: B. Speakman 2004.09.03 00007 // 00009 #ifndef FILTERSTREAM_H 00010 #define FILTERSTREAM_H 00011 00012 #include "TObject.h" 00013 #include "JobControl/JobCModule.h" 00014 00015 class FilterStream : public JobCModule, public TObject { 00016 public: 00017 FilterStream(); 00018 ~FilterStream(); 00019 00020 JobCResult Ana(const MomNavigator* mom); 00021 00022 const Registry& DefaultConfig() const; 00023 void Config(const Registry& r); 00024 00025 private: 00026 bool fPassMonitor; 00027 bool fPassSnarl; 00028 bool fPassCand; 00029 bool fPassLI; 00030 00031 ClassDef(FilterStream,0) 00032 }; 00033 #endif
1.3.9.1