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 TDSPSIGNALVIEW_H 00019 #define TDSPSIGNALVIEW_H 00020 00021 #include <TCanvas.h> 00022 #include <TDSPOperator.h> 00023 #include <TDSPSignal.h> 00024 00025 00030 class TDSPSignalView : public TDSPOperator { 00031 00032 TString *CanvasName; 00033 TString *CanvasTitle; 00034 00035 protected: 00036 00037 Option_t* fOption; 00038 00039 // my Slots 00040 00041 TString Slot_Update; 00042 00043 public: 00044 00045 // the window 00046 00047 TCanvas *Canvas; 00048 00049 TDSPSignalView(char *name, char *title = NULL, Option_t *op="ac"); 00050 ~TDSPSignalView(); 00051 00052 void SetOption(Option_t *op); 00053 void Update(TDSPSignal *input); //*SIGNAL* 00054 00055 ClassDef(TDSPSignalView,1) 00056 00057 }; 00058 00059 #endif
1.3.2