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