source: trunk/MagicSoft/Mars/mdatacheck/MShowSpect.h@ 812

Last change on this file since 812 was 698, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 600 bytes
Line 
1#ifndef MSHOWSPECT_H
2#define MSHOWSPECT_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8#ifndef MTASK_H
9#include "MTask.h"
10#endif
11
12class MGDisplayAdc;
13class MHFadcCam;
14class MParList ;
15
16class MShowSpect : public MTask
17{
18private:
19 char fHistName[256] ;
20
21 MHFadcCam *fHists; // Pointer to Container with the histograms
22
23 public:
24
25 MShowSpect(const char* histName,
26 const char *name=NULL, const char *title=NULL);
27
28 Bool_t PreProcess(MParList * pList);
29 Bool_t PostProcess();
30
31 ClassDef(MShowSpect, 0) // Fill the raw ADC in the histograms
32};
33
34#endif
35
36
37
Note: See TracBrowser for help on using the repository browser.