source: trunk/MagicSoft/Mars/mhflux/MHTheta.h@ 7000

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