22 |
|
#include "TClonesArray.h" |
23 |
|
|
24 |
|
|
25 |
< |
class SuperClusterAnalyzer{ |
26 |
< |
|
27 |
< |
public: |
28 |
< |
SuperClusterAnalyzer(const edm::ParameterSet& producersNames); |
29 |
< |
SuperClusterAnalyzer(const edm::ParameterSet& producersNames, int verbosity); |
30 |
< |
~SuperClusterAnalyzer(); |
31 |
< |
void SetVerbosity(int verbosity) {verbosity_ = verbosity; }; |
32 |
< |
void Process(const edm::Event& iEvent, TRootEvent* rootEvent, TClonesArray* rootSuperClusters, const string moduleLabel, const string instanceName, const int clusterType); |
33 |
< |
|
34 |
< |
private: |
35 |
< |
int verbosity_; |
36 |
< |
int iClus_; |
37 |
< |
std::string dataType_ ; |
38 |
< |
bool patEncapsulation_; |
39 |
< |
|
25 |
> |
class SuperClusterAnalyzer |
26 |
> |
{ |
27 |
> |
|
28 |
> |
public: |
29 |
> |
SuperClusterAnalyzer(const edm::ParameterSet& producersNames, int verbosity); |
30 |
> |
~SuperClusterAnalyzer(); |
31 |
> |
void setVerbosity(int verbosity) {verbosity_ = verbosity; }; |
32 |
> |
bool process(const edm::Event& iEvent, TRootEvent* rootEvent, TClonesArray* rootSuperClusters, const string moduleLabel, const string instanceName, const int clusterType); |
33 |
> |
|
34 |
> |
private: |
35 |
> |
int verbosity_; |
36 |
> |
int iClus_; |
37 |
> |
std::string dataType_ ; |
38 |
> |
bool allowMissingCollection_; |
39 |
> |
bool patEncapsulation_; |
40 |
> |
|
41 |
|
}; |
42 |
|
|
43 |
|
#endif |