source: trunk/MagicSoft/Mars/mhflux/MHThetaSq.h@ 7064

Last change on this file since 7064 was 7064, checked in by tbretz, 19 years ago
*** empty log message ***
File size: 553 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
24public:
25 MHThetaSq(const char *name=NULL, const char *title=NULL);
26
27 ClassDef(MHThetaSq, 1) // Theta-Plot which is fitted online
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.