PixieDAQ/mainSettings.h

31 lines
474 B
C
Raw Normal View History

#ifndef MAIN_SETTING_H
#define MAIN_SETTING_H
#include <TQObject.h>
2022-03-15 19:59:36 -04:00
#include "Pixie16Class.h"
class TGWindow;
class TGMainFrame;
class MainSettings{
private:
TGMainFrame * fMain;
2022-03-15 19:59:36 -04:00
Pixie16 * pixie;
public:
2022-03-15 19:59:36 -04:00
MainSettings(const TGWindow *p, UInt_t w, UInt_t h, Pixie16 * pixie);
virtual ~MainSettings();
2022-03-15 19:59:36 -04:00
void CloseWindow() { printf("close window\n"); delete this; }
2022-03-16 16:13:18 -04:00
void ChangeBL(unsigned short mod, unsigned short ch);
void kaka();
};
#endif