Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef _MOmegaPiFcnLS_H
#define _MOmegaPiFcnLS_H
#include <iostream>
#include <fstream>
//#include <string>
#include <vector>
#include <map>
#include <boost/shared_ptr.hpp>
#include "Examples/pbarpToOmegaPiLS/MinuitstartparamLS.hh"
//#include <cassert>
#include "Minuit2/FCNBase.h"
using namespace std;
class AbsOmegaPiLhLS;
namespace ROOT {
namespace Minuit2 {
class MOmegaPiFcnLS : public FCNBase {
public:
MOmegaPiFcnLS(boost::shared_ptr<AbsOmegaPiLhLS> absOmegaPiLh);
virtual ~MOmegaPiFcnLS();
double operator()(const std::vector<double>& par) const;
double Up() const;
private:
boost::shared_ptr<AbsOmegaPiLhLS> _omegaPiLhPtr;
};
} // namespace Minuit2
} // namespace ROOT
#endif /* _etacToapi0fcn_H */