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
#ifndef _pbarpStates_H
#define _pbarpStates_H
#include <iostream>
#include <string>
#include <vector>
#include <fstream>
#include "qft++/topincludes/relativistic-quantum-mechanics.hh"
#include "PwaUtils/DataUtils.hh"
class pbarpStates {
public:
/// Default Constructor
pbarpStates();
pbarpStates(int jmax);
/** Destructor */
virtual ~pbarpStates();
void print(std::ostream& os) const;
// std::vector<jpcRes*> allStates();
// std::vector<jpcRes*> lrange(int lmin; int lmax);
// std::vector<jpcRes*> jrange(Spin jmin; Spin jmax);
protected:
private:
int _jmax;
// std::vector<jpcRes*> _theStates;
std::vector<PbarP*> _theStates;
jpcRes _pbarJPC;
jpcRes _pJPC;
bool calcJPCs();
};
#endif /* _pbarpStates_H */