Last change
on this file since 3354 was 447, checked in by harald, 24 years ago |
Bringing the sources for the octobertest under CVS controll.
(november, 3rd, 2000)
|
-
Property svn:executable
set to
*
|
File size:
710 bytes
|
Line | |
---|
1 | #ifndef MADCSPECT_H
|
---|
2 | #define MADCSPECT_H
|
---|
3 |
|
---|
4 | #include "Magic.h"
|
---|
5 |
|
---|
6 | #include "MTask.h"
|
---|
7 | #include "MObjBuffer.h"
|
---|
8 |
|
---|
9 | class MHistosAdc;
|
---|
10 | class MParList;
|
---|
11 |
|
---|
12 | class MAdcSpect : public MTask
|
---|
13 | {
|
---|
14 | private:
|
---|
15 | MObjBuffer * fEvtBuf; // Pointer to MObjBuffer for Event Tree
|
---|
16 |
|
---|
17 | MHistosAdc *fHists; // Pointer to Container with the histograms
|
---|
18 |
|
---|
19 | char fTreeName[256]; // Name of the tree to fill
|
---|
20 | char fOutFile[256]; // Name of the output file
|
---|
21 |
|
---|
22 | public:
|
---|
23 | MAdcSpect(Char_t* treeName = "EvtTree", Char_t * rootfile = "nooutput");
|
---|
24 |
|
---|
25 | Bool_t PreProcess(MParList * pList);
|
---|
26 | Bool_t Process();
|
---|
27 | Bool_t PostProcess();
|
---|
28 |
|
---|
29 | ClassDef(MAdcSpect, 1) // Fill the raw ADC in the histograms
|
---|
30 | };
|
---|
31 |
|
---|
32 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.