source: trunk/MagicSoft/Mars/mhist/MHMcEnergies.h@ 852

Last change on this file since 852 was 851, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 727 bytes
Line 
1#ifndef MHMCENERGIES_H
2#define MHMCENERGIES_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7#ifndef ROOT_TClonesArray
8#include <TClonesArray.h>
9#endif
10#ifndef MPARCONTAINER_H
11#include "MParContainer.h"
12#endif
13#ifndef MHMCENERGY_H
14#include "MHMcEnergy.h"
15#endif
16
17class MParList;
18
19class MHMcEnergies : public MParContainer
20{
21private:
22 UInt_t fNum;
23 TClonesArray *fHists; // histograms
24
25public:
26
27 MHMcEnergies(const UInt_t count=0, const char *name=NULL, const char *title=NULL);
28 ~MHMcEnergies();
29
30 void AddEntriesToList(MParList *plist);
31
32 MHMcEnergy &operator[](UInt_t idx) { return (MHMcEnergy&)fHists[idx]; }
33
34 ClassDef(MHMcEnergies, 1) // container to hold several MHMcEnergy histograms
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.