97 lines
2.0 KiB
C++
97 lines
2.0 KiB
C++
#include <TQObject.h>
|
|
#include <RQ_OBJECT.h>
|
|
#include <TROOT.h>
|
|
#include <TClass.h>
|
|
#include <TGClient.h>
|
|
#include <TGMenu.h>
|
|
#include <TGTextEdit.h>
|
|
#include <TThread.h>
|
|
#include <TH1F.h>
|
|
#include <TGraph.h>
|
|
#include <TBenchmark.h>
|
|
#include <TGTextEditor.h>
|
|
#include <TGTextEntry.h>
|
|
|
|
#include "CAENDigitizer.h"
|
|
|
|
#include "macro.h"
|
|
#include "ClassDigitizer.h"
|
|
|
|
#include "boardSetting.h"
|
|
#include "channelSettingPHA.h"
|
|
#include "channelSettingPSD.h"
|
|
#include "registerSetting.h"
|
|
#include "triggerSummary.h"
|
|
#include "programSetting.h"
|
|
|
|
class TGWindow;
|
|
class TGMainFrame;
|
|
class TRootEmbeddedCanvas;
|
|
class TGNumberEntry;
|
|
|
|
class MainWindow{
|
|
RQ_OBJECT("MainWindow")
|
|
private:
|
|
TGMainFrame *fMain;
|
|
static TRootEmbeddedCanvas *fEcanvas;
|
|
|
|
TGMenuBar *fMenuBar;
|
|
TGPopupMenu *fMenuFile, *fMenuDigitizers, *fMenuUtility;
|
|
|
|
static TGNumberEntry * boardIDEntry, *chIDEntry;
|
|
|
|
static TGTextEdit * teLog;
|
|
|
|
TGTextButton *bOpenDigitizers;
|
|
TGTextButton *bStartRun;
|
|
TGTextButton *bStopRun;
|
|
static TGComboBox* cbMode;
|
|
static TGTextEntry * dataPrefix;
|
|
static TGNumberEntry * runIDEntry;
|
|
|
|
TGTextButton *bPlotSingleTrace;
|
|
TGTextButton *bFitTrace;
|
|
|
|
std::vector<int> portID;
|
|
std::vector<int> boardID;
|
|
std::vector<int> serialNum;
|
|
|
|
static BoardSetting * boardSetting;
|
|
ChannelSettingPHA * channelSettingPHA;
|
|
ChannelSettingPSD * channelSettingPSD;
|
|
RegisterSetting * registerSetting;
|
|
TriggerSummary * triggerSummary;
|
|
ProgramSetting * programSetting;
|
|
|
|
TThread * fillHistThread;
|
|
|
|
public:
|
|
MainWindow(const TGWindow *p, UInt_t w, UInt_t h);
|
|
virtual ~MainWindow();
|
|
|
|
void HandleMenu(Int_t id);
|
|
|
|
void OpenDigitizers();
|
|
void ChangeBoard();
|
|
void LoadSettingFromFile();
|
|
|
|
void UpdateExpName();
|
|
|
|
void StartRun();
|
|
void StopRun();
|
|
|
|
static void * RunThread(void * ptr); /// thread
|
|
|
|
void PlotSingleTrace();
|
|
void FitTrace();
|
|
|
|
void ChangePlot();
|
|
|
|
void OpenChannelSetting(Int_t);
|
|
void UpdateChannelSetting();
|
|
void LogMsg(char * );
|
|
void GoodBye();
|
|
|
|
|
|
};
|