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 |
|
---|
12 | class MGDisplayAdc;
|
---|
13 | class MHFadcCam;
|
---|
14 | class MParList ;
|
---|
15 |
|
---|
16 | class MShowSpect : public MTask
|
---|
17 | {
|
---|
18 | private:
|
---|
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.