48 TFile* file =
new TFile(fname);
49 if (! file->IsOpen()) {
50 cout <<
"Cannot open the file, '" << fname <<
"'. Abort." << endl;
53 TTree* tree = (TTree*)file->Get(
m_tree_name.c_str());
55 cout <<
"Cannot get the tree, '" <<
m_tree_name.c_str() <<
"'. Abort." << endl;
61 for (
int i_ent = 0; i_ent < tree->GetEntries(); i_ent++) {
62 tree->GetEntry(i_ent);
77 if (mass < m_mass_lo || mass >
m_mass_hi)
return;
78 if (road_pos * road_neg >= 0)
return;
81 map->
Add(road_pos, weight);
84 map->
Add(road_neg, weight);
89 cout <<
"AnaSignal::Analyze():" << endl;
90 cout <<
" Do nothing for now. Probably it will scale the signal weight by the simulated integrated luminosity." << endl;
std::string m_branch_name
virtual void ProcessOneEvent()
AnaSignal(const std::string label="ana_signal")
RoadMap m_road_map_neg_top
void SetMassRange(const double mass_lo, const double mass_hi)
RoadMap m_road_map_neg_bot
virtual void ReadEvents(const char *fname="signal_tree.root")
RoadMap m_road_map_pos_bot
RoadMap m_road_map_pos_top
void SetPNTB(const int pn, const int tb)
Class to hold a non-ordered set (i.e. map) of roads.
void Add(const int road, const double weight, const int count=1)