forked from kvtsang/Supera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuperaMCPCluster.h
77 lines (62 loc) · 1.69 KB
/
SuperaMCPCluster.h
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* \file SuperaMCPCluster.h
*
* \ingroup Package_Name
*
* \brief Class def header for a class SuperaMCPCluster
*
* @author kazuhiro
*/
/** \addtogroup Package_Name
@{*/
#ifndef __SUPERAMCPCLUSTER_H__
#define __SUPERAMCPCLUSTER_H__
#include "SuperaBase.h"
#include "FMWKInterface.h"
#include "MCParticleTree.h"
#include "ParamsPixel2D.h"
#include "ParamsVoxel3D.h"
#include "ImageMetaMaker.h"
namespace larcv {
/**
\class ProcessBase
User defined class SuperaMCPCluster ... these comments are used to generate
doxygen documentation!
*/
class SuperaMCPCluster : public SuperaBase,
public supera::ImageMetaMaker,
public supera::ParamsPixel2D,
public supera::ParamsVoxel3D {
public:
/// Default constructor
SuperaMCPCluster(const std::string name="SuperaMCPCluster");
/// Default destructor
~SuperaMCPCluster(){}
void configure(const PSet&);
void initialize();
bool process(IOManager& mgr);
void finalize();
private:
std::string _part_producer;
ProjectionID_t _target_projection;
supera::MCParticleTree _mcpt;
bool _use_true_pos;
};
/**
\class larcv::SuperaMCPClusterFactory
\brief A concrete factory class for larcv::SuperaMCPCluster
*/
class SuperaMCPClusterProcessFactory : public ProcessFactoryBase {
public:
/// ctor
SuperaMCPClusterProcessFactory() { ProcessFactory::get().add_factory("SuperaMCPCluster",this); }
/// dtor
~SuperaMCPClusterProcessFactory() {}
/// creation method
ProcessBase* create(const std::string instance_name) { return new SuperaMCPCluster(instance_name); }
};
}
#endif
//#endif
//#endif
/** @} */ // end of doxygen group