00001 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef TDSPMONITOR_H 00019 #define TDSPMONITOR_H 00020 00021 #include <TList.h> 00022 #include <TDSPOperator.h> 00023 #include <TDSPBlockOperation.h> 00024 00029 class TDSPMonitor : public TDSPOperator, public TDSPBlockOperation { 00030 protected: 00031 00032 TString Slot_Update; 00033 TList fSignalList; 00034 Int_t fBlockLen; 00035 00036 public: 00037 00038 TDSPVector fMSE; 00039 00040 TDSPMonitor(char *name=NULL); 00041 ~TDSPMonitor(); 00042 00043 00044 void SetBlockLen(Int_t b) { fBlockLen = b;}; 00045 Int_t GetBlockLen() { return fBlockLen; }; 00046 00047 TDSPSignal* GetNamedSignal(char *); 00048 virtual void Monitor(char *); 00049 00050 // the slot 00051 00052 void Update(TDSPSignal*); 00053 00054 ClassDef(TDSPMonitor,1) 00055 00056 }; 00057 00058 #endif
1.3.2