21 |
|
class BaseFiller |
22 |
|
{ |
23 |
|
public: |
24 |
< |
BaseFiller(const edm::ParameterSet&, const char *name, bool active=true); |
24 |
> |
BaseFiller(const edm::ParameterSet &cfg, const char *name, bool active=true); |
25 |
|
virtual ~BaseFiller() {} |
26 |
|
|
27 |
|
bool Active() const { return active_; } |
31 |
|
virtual void ResolveLinks(const edm::Event&, const edm::EventSetup&) {} |
32 |
|
|
33 |
|
protected: |
34 |
– |
const std::string name_; |
35 |
– |
const edm::ParameterSet config_; |
36 |
– |
const bool active_; |
37 |
– |
|
34 |
|
const edm::ParameterSet &Conf() const { return config_; } |
35 |
+ |
|
36 |
+ |
const std::string name_; //name of this filler |
37 |
+ |
const edm::ParameterSet config_; //parameter set for this filler |
38 |
+ |
const bool active_; //=1 if active |
39 |
|
}; |
40 |
|
} |
41 |
|
#endif |