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
#ifndef _Psi2SToKpKmPiGamEvtList_H
#define _Psi2SToKpKmPiGamEvtList_H
#include <iostream>
#include <vector>
#include <cassert>
// #include <TSystem.h>
#include "PwaUtils/EvtDataBaseList.hh"
class EventList;
class Psi2SToKpKmPiGamEvtList : public EvtDataBaseList {
public:
// create/copy/destroy:
///Constructor
Psi2SToKpKmPiGamEvtList(EventList& evtListData, EventList& evtListMc);
/** Destructor */
virtual ~Psi2SToKpKmPiGamEvtList();
// Getters:
protected:
virtual void read4Vecs(EventList& evtList, std::vector<EvtData*>& theEvtList);
private:
};
#endif