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
#ifndef _OmegaTo3PiEventListLS_H
#define _OmegaTo3PiEventListLS_H
#include <iostream>
#include <vector>
#include <cassert>
// #include <TSystem.h>
#include "qft++/topincludes/relativistic-quantum-mechanics.hh"
#include "Examples/pbarpToOmegaPiLS/OmegaPiDataLS.hh"
#include "Examples/pbarpToOmegaPiLS/AbsOmegaPiEventListLS.hh"
using OmegaPiDataLS::OmPiEvtDataLS;
class EventList;
class OmegaTo3PiEventListLS : public AbsOmegaPiEventListLS{
public:
// create/copy/destroy:
///Constructor
OmegaTo3PiEventListLS(EventList& evtListData, EventList& evtListMc, unsigned jmax, unsigned pbarmom);
/** Destructor */
virtual ~OmegaTo3PiEventListLS();
// Getters:
protected:
virtual void read4Vecs(EventList& evtList, std::vector<OmPiEvtDataLS*>& omPiEvtList);
private:
};
#endif