Line | |
---|
1 | #ifndef MPEDESTALCAM_H
|
---|
2 | #define MPEDESTALCAM_H
|
---|
3 |
|
---|
4 | #ifndef MPARCONTAINER_H
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | #ifndef MPEDESTALPIX_H
|
---|
9 | #include "MPedestalPix.h"
|
---|
10 | #endif
|
---|
11 |
|
---|
12 | #ifndef ROOT_TClonesArray
|
---|
13 | #include <TClonesArray.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class MPedestalCam : public MParContainer
|
---|
17 | {
|
---|
18 | private:
|
---|
19 | TClonesArray *fArray;
|
---|
20 |
|
---|
21 | public:
|
---|
22 | MPedestalCam(const char *name=NULL, const char *title=NULL);
|
---|
23 | ~MPedestalCam();
|
---|
24 |
|
---|
25 | MPedestalPix &operator[](Int_t i) { return *(MPedestalPix*)fArray->At(i); }
|
---|
26 |
|
---|
27 | ClassDef(MPedestalCam, 1) // Storage Container for all pedestal information of the camera
|
---|
28 | };
|
---|
29 |
|
---|
30 | #endif
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.