source: trunk/MagicSoft/Mars/manalysis/MMcPedestalNSBAdd.h@ 1126

Last change on this file since 1126 was 1126, checked in by blanch, 23 years ago
Header file for MMcPedestalNSBAdd.cc 1.1
File size: 1.2 KB
Line 
1#ifndef MARS_MMcPedestalNSBAdd
2#define MARS_MMcPedestalNSBAdd
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MMcPedestalNSBAdd //
7// //
8// This task adds the contribution to pedestal rms from the NSB in the //
9// MARS Container (MPedestals). //
10// //
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef MARS_MTask
14#include "MTask.h"
15#endif
16
17class MMcFadcHeader;
18class MPedestalCam;
19class MRawRunHeader;
20class MMcRunHeader;
21
22class MMcPedestalNSBAdd : public MTask
23{
24
25 Float_t fDnsbPixel;
26
27public:
28 MMcPedestalNSBAdd(const Float_t difnsb = -1.0,
29 const char *name=NULL, const char *title=NULL);
30
31 Bool_t PreProcess(MParList *pList);
32
33 virtual Bool_t ReInit(MParList *pList);
34
35 ClassDef(MMcPedestalNSBAdd, 0) // Task which adds the NSB fluctuations to the pedestals rms
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.