Last change
on this file since 18459 was 17334, checked in by tbretz, 11 years ago |
Removed an unused argument to suppress compiler warning.
|
File size:
830 bytes
|
Line | |
---|
1 | #ifndef MARS_MCamEvent
|
---|
2 | #define MARS_MCamEvent
|
---|
3 |
|
---|
4 | #ifndef ROOT_TArrayD
|
---|
5 | #include <TArrayD.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MGeomCam;
|
---|
9 |
|
---|
10 | class MCamEvent
|
---|
11 | {
|
---|
12 | public:
|
---|
13 | virtual ~MCamEvent() { }
|
---|
14 |
|
---|
15 | virtual Bool_t GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type=0) const = 0;
|
---|
16 | virtual void DrawPixelContent(Int_t num) const = 0;
|
---|
17 |
|
---|
18 | virtual void Init(const MGeomCam &geom);
|
---|
19 | virtual void InitSize(const UInt_t) { } // Used by MGeomApply see Init()
|
---|
20 |
|
---|
21 | virtual Double_t GetCameraMean(const MGeomCam &cam, Int_t type=0) const;
|
---|
22 | virtual Double_t GetCameraMedian(const MGeomCam &cam, Int_t type=0) const;
|
---|
23 | virtual Double_t GetCameraRMS(const MGeomCam &cam, Int_t type=0) const;
|
---|
24 | virtual TArrayD GetCameraStat(const MGeomCam &cam, Int_t type=0) const;
|
---|
25 |
|
---|
26 | ClassDef(MCamEvent, 0) // A camera event
|
---|
27 | };
|
---|
28 |
|
---|
29 | #endif
|
---|
30 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.