source: trunk/MagicSoft/Mars/manalysis/MMatrixLoop.h@ 2851

Last change on this file since 2851 was 2419, checked in by wittek, 21 years ago
*** empty log message ***
File size: 562 bytes
Line 
1#ifndef MARS_MMatrixLoop
2#define MARS_MMatrixLoop
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8
9class MHMatrix;
10
11class MMatrixLoop : public MTask
12{
13private:
14 static const TString gsDefName;
15 static const TString gsDefTitle;
16
17protected:
18 MHMatrix *fMatrix;
19 Int_t fNumRow; //! Number of dimensions of histogram
20
21public:
22 MMatrixLoop(MHMatrix *mat, const char *name=NULL, const char *title=NULL);
23
24 Int_t PreProcess(MParList *plist);
25 Int_t Process();
26
27 ClassDef(MMatrixLoop, 0) // Task 'reading' events from a MHMatrix
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.