source: trunk/MagicSoft/Mars/manalysis/MMcPedestalNSB.h@ 1130

Last change on this file since 1130 was 1098, checked in by blanch, 23 years ago
Header file for MMcPedestalsNSB version 1.1
  • Property svn:executable set to *
File size: 1.1 KB
Line 
1#ifndef MARS_MMcPedestalNSB
2#define MARS_MMcPedestalNSB
3
4/////////////////////////////////////////////////////////////////////////////
5// //
6// MMcPedestalNSB //
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;
19
20class MMcPedestalNSB : public MTask
21{
22 TString *fSrc;
23 Float_t fdnsb_pixel;
24
25public:
26 MMcPedestalNSB(const float difnsb = -1.0,
27 const char *name=NULL, const char *title=NULL);
28
29 Bool_t PreProcess(MParList *pList);
30
31 ClassDef(MMcPedestalNSB, 0) // Task which adds the NSB fluctuations to the pedestals rms
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.