Line | |
---|
1 | /////////////////////////////////////////////////////////////////////////////
|
---|
2 | // //
|
---|
3 | // MPedestalCam //
|
---|
4 | // //
|
---|
5 | // Hold the Pedestal information for all pixels in the camera //
|
---|
6 | // //
|
---|
7 | /////////////////////////////////////////////////////////////////////////////
|
---|
8 | #include "MPedestalCam.h"
|
---|
9 |
|
---|
10 | #include "MLog.h"
|
---|
11 |
|
---|
12 | ClassImp(MPedestalCam)
|
---|
13 |
|
---|
14 | MPedestalCam::MPedestalCam(const char *name, const char *title)
|
---|
15 | {
|
---|
16 | *fName = name ? name : "MPedestalCam";
|
---|
17 | *fTitle = title ? title : "Storage container for all Pedestal Information in the camera";
|
---|
18 |
|
---|
19 | fArray = new TClonesArray("MPedestalPix", 577);
|
---|
20 | }
|
---|
21 |
|
---|
22 | MPedestalCam::~MPedestalCam()
|
---|
23 | {
|
---|
24 | delete fArray;
|
---|
25 | }
|
---|
26 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.