source: trunk/MagicSoft/Mars/manalysis/MCT1Pedestals.h@ 695

Last change on this file since 695 was 654, checked in by tbretz, 24 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 442 bytes
Line 
1#ifndef MCT1PEDESTALS_H
2#define MCT1PEDESTALS_H
3
4#ifndef MPARCONTAINER_H
5#include "MParContainer.h"
6#endif
7
8class MCT1Pedestals : public MParContainer
9{
10private:
11 Float_t fPedest[127]; //!
12
13public:
14 MCT1Pedestals(const char *name=NULL, const char *title=NULL);
15
16 Float_t &operator[](int i) { return fPedest[i]; }
17
18 void AsciiRead (ifstream &fin);
19
20 ClassDef(MCT1Pedestals, 1) // Storage Container for CT1 Pedestals
21};
22
23#endif
24
Note: See TracBrowser for help on using the repository browser.