forked from kvtsang/Supera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SuperaChStatus.h
75 lines (57 loc) · 1.71 KB
/
SuperaChStatus.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
/**
* \file SuperaChStatus.h
*
* \ingroup Package_Name
*
* \brief Class def header for a class SuperaChStatus
*
* @author kazuhiro
*/
/** \addtogroup Package_Name
@{*/
#ifndef __SUPERACHSTATUS_H__
#define __SUPERACHSTATUS_H__
#include "larcv/core/DataFormat/ChStatus.h"
#include "SuperaBase.h"
#include "FMWKInterface.h"
#include "ParamsChStatus.h"
namespace larcv {
/**
\class ProcessBase
User defined class SuperaChStatus ... these comments are used to generate
doxygen documentation!
*/
class SuperaChStatus : public SuperaBase,
public supera::ParamsChStatus {
public:
/// Default constructor
SuperaChStatus(const std::string name="SuperaChStatus");
/// Default destructor
~SuperaChStatus(){}
void configure(const PSet&);
void initialize();
bool process(IOManager& mgr);
void finalize();
bool is(const std::string question) const;
void set_chstatus(::larcv::ProjectionID_t plane, unsigned int wire, short status);
const std::string& InputLabel() const { return _in_chstatus_producer; }
private:
std::string _in_chstatus_producer;
std::map<larcv::ProjectionID_t,larcv::ChStatus> _status_m;
};
/**
\class larcv::SuperaChStatusFactory
\brief A concrete factory class for larcv::SuperaChStatus
*/
class SuperaChStatusProcessFactory : public ProcessFactoryBase {
public:
/// ctor
SuperaChStatusProcessFactory() { ProcessFactory::get().add_factory("SuperaChStatus",this); }
/// dtor
~SuperaChStatusProcessFactory() {}
/// creation method
ProcessBase* create(const std::string instance_name) { return new SuperaChStatus(instance_name); }
};
}
#endif
/** @} */ // end of doxygen group