source: trunk/MagicSoft/Mars/mraw/MRawCrateArray.h@ 961

Last change on this file since 961 was 765, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 942 bytes
Line 
1#ifndef MRAWCRATEARRAY_H
2#define MRAWCRATEARRAY_H
3///////////////////////////////////////////////////////////////////////
4// //
5// MRunHeader //
6// //
7///////////////////////////////////////////////////////////////////////
8
9#ifndef MPARCONTAINER_H
10#include "MParContainer.h"
11#endif
12
13class TClonesArray;
14class MRawCrateData;
15
16class MRawCrateArray : public MParContainer
17{
18private:
19 TClonesArray *fArray;
20
21public:
22 MRawCrateArray(const char *name=NULL, const char *title=NULL);
23 ~MRawCrateArray();
24
25 void Clear(Option_t *opt=NULL);
26
27 MRawCrateData *GetEntry(Int_t i);
28
29 MRawCrateData* &operator[](Int_t i);
30
31 TClonesArray **GetArray();
32
33 ClassDef(MRawCrateArray, 1) // Mapping container for the MRawCrateData TClonesArray
34};
35
36#endif
Note: See TracBrowser for help on using the repository browser.