source: tags/Mars-V0.9.3/mhflux/MHThetaSq.h

Last change on this file was 7125, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 604 bytes
Line 
1#ifndef MARS_MHThetaSq
2#define MARS_MHThetaSq
3
4#ifndef MARS_MHAlpha
5#include "MHAlpha.h"
6#endif
7
8class MTaskList;
9
10class MHThetaSq : public MHAlpha
11{
12private:
13 MParameterD *fThetaSq; //!
14
15 Bool_t GetParameter(const MParList &pl);
16 Double_t GetVal() const;
17 const char *GetParameterRule() const
18 {
19 return "ThetaSquared.fVal";
20 }
21
22 Bool_t SetupFill(const MParList *pl);
23 void InitMapping(MHMatrix *mat, Int_t type=0);
24
25public:
26 MHThetaSq(const char *name=NULL, const char *title=NULL);
27
28 ClassDef(MHThetaSq, 1) // Theta-Plot which is fitted online
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.