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

Last change on this file since 532 was 466, checked in by tbretz, 24 years ago
see Changelog
File size: 522 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 MHistosAdc;
14class MParList ;
15
16class MShowSpect : public MTask
17{
18private:
19 char fHistName[256] ;
20
21 MHistosAdc *fHists; // Pointer to Container with the histograms
22
23 public:
24
25 MShowSpect(char* histName );
26
27 Bool_t PreProcess(MParList * pList);
28 Bool_t PostProcess();
29
30 ClassDef(MShowSpect, 1) // Fill the raw ADC in the histograms
31};
32
33#endif
34
35
36
Note: See TracBrowser for help on using the repository browser.