-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPHTpcEventExporter.h
More file actions
38 lines (28 loc) · 885 Bytes
/
PHTpcEventExporter.h
File metadata and controls
38 lines (28 loc) · 885 Bytes
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
/*!
* \file PHTpcEventExporter.h
* \brief
* \author Dmitry Arkhipkin <arkhipkin@bnl.gov>
*/
#ifndef PHTPCEVENTEXPORTER_H_
#define PHTPCEVENTEXPORTER_H_
#include <trackbase/TrkrClusterContainer.h>
#include "externals/kdfinder.hpp"
#include "Track.h"
/// \class PHTpcEventExporter
///
/// \brief
///
class PHTpcEventExporter
{
public:
PHTpcEventExporter();
virtual ~PHTpcEventExporter() {}
void exportEvent( TrkrClusterContainer* cluster_map, std::vector<kdfinder::TrackCandidate<double>*> candidates,
double B, const std::string& filename );
void exportEvent( TrkrClusterContainer* cluster_map, std::vector<PHGenFit2::Track*> gtracks,
double B, const std::string& filename );
void exportEvent( std::vector<PHGenFit2::Track*> gtracks, double B, const std::string& filename );
protected:
private:
};
#endif /* PHTPCEVENTEXPORTER_H_ */