11 |
|
#ifndef MITPROD_TREEFILLER_BASEFILLER_H |
12 |
|
#define MITPROD_TREEFILLER_BASEFILLER_H |
13 |
|
|
14 |
+ |
#include "DataFormats/Common/interface/Handle.h" |
15 |
|
#include "FWCore/Framework/interface/Event.h" |
16 |
|
#include "FWCore/Framework/interface/Frameworkfwd.h" |
17 |
|
#include "FWCore/ParameterSet/interface/ParameterSet.h" |
18 |
|
#include "FWCore/MessageLogger/interface/MessageLogger.h" |
18 |
– |
#include "DataFormats/Common/interface/Handle.h" |
19 |
|
#include "MitAna/DataUtil/interface/TreeWriter.h" |
20 |
– |
#include "MitProd/ObjectService/interface/ObjectService.h" |
21 |
– |
#include "MitProd/TreeFiller/interface/FillMitTree.h" |
20 |
|
#include <TString.h> |
21 |
|
|
22 |
|
namespace mithep |
23 |
|
{ |
24 |
|
class BranchTable; |
25 |
+ |
class ObjectService; |
26 |
|
|
27 |
|
class BaseFiller |
28 |
|
{ |
36 |
|
{ AddBranchDep(n.c_str(), d); } |
37 |
|
void AddBranchDep(const std::string &n, const std::string &d) |
38 |
|
{ AddBranchDep(n.c_str(), d.c_str()); } |
39 |
< |
virtual void BookDataBlock(TreeWriter &tws) = 0; |
39 |
> |
virtual void BookDataBlock(TreeWriter &tws, const edm::EventSetup &es) = 0; |
40 |
|
virtual void FillDataBlock(const edm::Event &e, const edm::EventSetup &es) = 0; |
41 |
|
const std::string &Name() const { return name_; } |
42 |
|
virtual void ResolveLinks(const edm::Event &e, const edm::EventSetup &es) {} |
52 |
|
template <typename TYPE> |
53 |
|
bool GetProductSafe(const std::string name, edm::Handle<TYPE> &prod, |
54 |
|
const edm::Event &event) const; |
55 |
< |
|
57 |
< |
ObjectService *OS() { return FillMitTree::os(); } |
55 |
> |
ObjectService *OS(); |
56 |
|
|
57 |
|
const std::string name_; //name of this filler |
58 |
|
const std::string brtname_; //name of branch table (def = BranchTable) |
76 |
|
event.getByLabel(edm::InputTag(edmname),prod); |
77 |
|
if (!prod.isValid()) |
78 |
|
throw edm::Exception(edm::errors::Configuration, "BaseFiller::GetProduct()\n") |
79 |
< |
<< "Cannot get collection with label " << edmname << std::endl; |
79 |
> |
<< "Cannot get collection with label " << edmname << " for " << Name() << std::endl; |
80 |
|
} catch (...) { |
81 |
|
edm::LogError("BaseFiller") << "Cannot get collection with label " |
82 |
< |
<< edmname << std::endl; |
83 |
< |
PrintErrorAndExit(Form("Cannot get collection with label %s", edmname.c_str())); |
82 |
> |
<< edmname << " for " << Name() << std::endl; |
83 |
> |
PrintErrorAndExit(Form("Cannot get collection with label %s for %s", |
84 |
> |
edmname.c_str(), name_.c_str())); |
85 |
|
} |
86 |
|
} |
87 |
|
|