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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#ifndef _OmegaTo3PiLhProdLS_H
#define _OmegaTo3PiLhProdLS_H
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <complex>
#include <cassert>
#include <boost/shared_ptr.hpp>
#include "TROOT.h"
// #include <TSystem.h>
#include "qft++/topincludes/relativistic-quantum-mechanics.hh"
#include "Examples/pbarpToOmegaPiLS/OmegaPiDataLS.hh"
#include "Examples/pbarpToOmegaPiLS/AbsOmegaPiLhLS.hh"
#include "PwaUtils/DataUtils.hh"
// using namespace std;
class AbsOmegaPiEventListLS;
class pbarpToOmegaPi0StatesLS;
class OmegaTo3PiLhProdLS : public AbsOmegaPiLhLS{
public:
// create/copy/destroy:
///Constructor
OmegaTo3PiLhProdLS(boost::shared_ptr<const AbsOmegaPiEventListLS>, boost::shared_ptr<const pbarpToOmegaPi0StatesLS>);
OmegaTo3PiLhProdLS(boost::shared_ptr<OmegaTo3PiLhProdLS>);
/** Destructor */
virtual ~OmegaTo3PiLhProdLS();
virtual AbsOmegaPiLhLS* clone_() const{
return new OmegaTo3PiLhProdLS(_omegaPiEventListPtr, _omegaPi0StatesPtr);
}
// Getters:
virtual double calcLogLh(const OmegaPiDataLS::fitParamVal& theParamVal);
virtual double calcEvtIntensity(OmegaPiDataLS::OmPiEvtDataLS* theData, const OmegaPiDataLS::fitParamVal& theParamVal);
virtual void print(std::ostream& os) const;
protected:
virtual complex<double> calcCoherentAmp(Spin lamOm, Spin Minit, const OmegaPiDataLS::fitParamVal& theParamVal, std::vector< boost::shared_ptr<const JPCLSls> >& theJPCLSlsStates, OmegaPiDataLS::OmPiEvtDataLS* theData);
private:
};
#endif