source: trunk/MagicSoft/MarsOctober/mocttest/MAdcSpect.h@ 447

Last change on this file since 447 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
9class MHistosAdc;
10class MParList;
11
12class MAdcSpect : public MTask
13{
14private:
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
22public:
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.