Last change
on this file since 20115 was 14090, checked in by tbretz, 12 years ago |
New class to hold board informations.
|
File size:
545 bytes
|
Line | |
---|
1 | #ifndef MARS_MRawBoardsFACT
|
---|
2 | #define MARS_MRawBoardsFACT
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | //gcc 3.2
|
---|
9 | //class ifstream;
|
---|
10 | #include <iosfwd>
|
---|
11 |
|
---|
12 | class MRawBoardsFACT : public MParContainer
|
---|
13 | {
|
---|
14 | friend class MRawFitsRead;
|
---|
15 |
|
---|
16 | private:
|
---|
17 | UInt_t fFadTime[40]; // Crate number the information corresponds to
|
---|
18 |
|
---|
19 | public:
|
---|
20 | MRawBoardsFACT();
|
---|
21 |
|
---|
22 | UInt_t GetFadTime(UInt_t i) const { return fFadTime[i]; }
|
---|
23 |
|
---|
24 | void Print(Option_t *t=NULL) const;
|
---|
25 |
|
---|
26 | ClassDef(MRawBoardsFACT, 1) //Container to store the Raw CRATE DATA
|
---|
27 | };
|
---|
28 |
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.