source: trunk/MagicSoft/Mars/mcamera/MCameraRecTemp.h@ 7444

Last change on this file since 7444 was 7444, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 663 bytes
Line 
1#ifndef MARS_MCameraRecTemp
2#define MARS_MCameraRecTemp
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8#ifndef ROOT_TArrayF
9#include <TArrayF.h>
10#endif
11
12class MCameraRecTemp : public MParContainer
13{
14 friend class MReportCC;
15private:
16 TArrayF fRecTemp; // [deg C] receiver board temperatures
17
18public:
19 MCameraRecTemp(Int_t size=76, const char *name=NULL, const char *title=NULL);
20
21 Float_t operator[](Int_t i) const { return fRecTemp[i]; }
22
23 Float_t GetMin() const;
24 Float_t GetMax() const;
25
26 void Print(Option_t *opt=NULL) const;
27
28 ClassDef(MCameraRecTemp, 1) // Storage Container for Receiver Board Temperature
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.