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 _OmegaPiEventListLS_H
#define _OmegaPiEventListLS_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 OmegaPiEventListLS : public AbsOmegaPiEventListLS{
public:
// create/copy/destroy:
///Constructor
OmegaPiEventListLS(EventList& evtListData, EventList& evtListMc, unsigned jmax, unsigned pbarmom);
/** Destructor */
virtual ~OmegaPiEventListLS();
// Getters:
protected:
virtual void read4Vecs(EventList& evtList, std::vector<OmPiEvtDataLS*>& omPiEvtList);
private:
};
#endif