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
// KPoleBarrier class definition file. -*- C++ -*-
// Copyright 2012 Bertram Kopf
#pragma once
//_____________________________________________________________________________
// @file KPoleBarrier.h
//_____________________________________________________________________________
#include "qft++/matrix/Matrix.hh"
#include "PwaDynamics/KPole.hh"
#include "PwaDynamics/AbsPhaseSpace.hh"
#include <iostream>
#include <vector>
#include <complex>
#include <boost/shared_ptr.hpp>
using namespace std;
class AbsPhaseSpace;
//_____________________________________________________________________________
//_____________________________________________________________________________
class KPoleBarrier : public KPole {
public:
// create/copy/destroy:
/// Default Constructor (rank 0)
// KPoleBarrier() : Matrix<double>::Matrix() {}
/// Constructor
KPoleBarrier(vector<double>& g_i, double mass_0, vector<boost::shared_ptr<AbsPhaseSpace> > phpVecs, int orbMom);
/// Copy Constructor
// KPoleBarrier(const KPoleBarrier &theCopy);
/// Destructor
virtual ~KPoleBarrier();
// operators:
// functions:
virtual void evalMatrix(const double mass);
protected:
vector<boost::shared_ptr<AbsPhaseSpace> > _phpVecs;
int _orbMom;
};
//_____________________________________________________________________________