#include <CSCValHists.h>
Classes | |
struct | posRecord |
Public Member Functions | |
int | crate_lookup (CSCDetId id) |
CSCValHists () | |
void | fill1DHist (float x, std::string name, std::string title, int bins, float xmin, float xmax, std::string folder) |
void | fill1DHistByChamber (float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder) |
void | fill1DHistByCrate (float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder) |
void | fill1DHistByLayer (float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder) |
void | fill1DHistByStation (float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder) |
void | fill1DHistByType (float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder) |
void | fill2DHist (float z, std::string name, std::string title, CSCDetId id, std::string folder) |
void | fill2DHist (float x, float y, std::string name, std::string title, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DHistByChamber (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DHistByCrate (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DHistByEvent (int run, int event, float x, std::string name, std::string title, CSCDetId id, std::string folder) |
void | fill2DHistByLayer (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DHistByStation (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DHistByType (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder) |
void | fill2DProfile (float x, float y, float z, std::string name, std::string title, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, float zmin, float zmax, std::string folder) |
void | fillCalibHist (float x, std::string name, std::string title, int bins, float xmin, float xmax, int bin, std::string folder) |
void | fillProfile (float x, float y, std::string name, std::string title, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder) |
void | fillProfileByChamber (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder) |
void | fillProfileByType (float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder) |
void | fillRechitTree (float x, float y, float gx, float gy, int en, int st, int ri, int ch, int la) |
void | fillSegmentTree (float x, float y, float gx, float gy, int en, int st, int ri, int ch) |
void | insertPlot (TH1 *thePlot, std::string name, std::string folder) |
void | setupTrees () |
void | writeHists (TFile *theFile) |
void | writeTrees (TFile *theFile) |
~CSCValHists () | |
Private Attributes | |
struct CSCValHists::posRecord | rHpos |
TTree * | rHTree |
struct CSCValHists::posRecord | segpos |
TTree * | segTree |
std::map< std::string, std::pair< TH1 *, std::string > > | theMap |
Manages Histograms for CSCValidation
Andy Kubik - Northwestern University
Definition at line 36 of file CSCValHists.h.
CSCValHists::CSCValHists | ( | ) |
Definition at line 7 of file CSCValHists.cc.
References gather_cfg::cout.
{ std::cout << "Initializing Histogram Manager..." << std::endl; }
CSCValHists::~CSCValHists | ( | ) |
Definition at line 14 of file CSCValHists.cc.
{ }
int CSCValHists::crate_lookup | ( | CSCDetId | id | ) |
Definition at line 530 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and relativeConstraints::station.
{ int crate = 0; if (id.station() == 1){ if (id.chamber() == 36 || id.chamber() == 1 || id.chamber() == 2 ) crate = 1; if (id.chamber() == 3 || id.chamber() == 4 || id.chamber() == 5 ) crate = 2; if (id.chamber() == 6 || id.chamber() == 7 || id.chamber() == 8 ) crate = 3; if (id.chamber() == 9 || id.chamber() == 10 || id.chamber() == 11 ) crate = 4; if (id.chamber() == 12 || id.chamber() == 13 || id.chamber() == 14 ) crate = 5; if (id.chamber() == 15 || id.chamber() == 16 || id.chamber() == 17 ) crate = 6; if (id.chamber() == 18 || id.chamber() == 19 || id.chamber() == 20 ) crate = 7; if (id.chamber() == 21 || id.chamber() == 22 || id.chamber() == 23 ) crate = 8; if (id.chamber() == 24 || id.chamber() == 25 || id.chamber() == 26 ) crate = 9; if (id.chamber() == 27 || id.chamber() == 28 || id.chamber() == 29 ) crate = 10; if (id.chamber() == 30 || id.chamber() == 31 || id.chamber() == 32 ) crate = 11; if (id.chamber() == 33 || id.chamber() == 34 || id.chamber() == 35 ) crate = 12; } else{ crate = 12 + id.triggerSector() + (id.station()-2)*6; } if (id.endcap() == 2) crate = crate+30; return crate; }
void CSCValHists::fill1DHist | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 121 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
void CSCValHists::fill1DHistByChamber | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 293 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax),folder); } theMap[name].first->Fill(x); }
void CSCValHists::fill1DHistByCrate | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 199 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
{ int crate = crate_lookup(id); map<string,pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_crate_" << crate; oss2 << title << " (crate " << crate << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder); } theMap[name].first->Fill(x); }
void CSCValHists::fill1DHistByLayer | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 397 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber() << "_L" << id.layer(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << "/L" << id.layer() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax),folder); } theMap[name].first->Fill(x); }
void CSCValHists::fill1DHistByStation | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 244 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; map<string,pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << endcap << id.station(); oss2 << title << " (Station " << endcap << id.station() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder); } theMap[name].first->Fill(x); }
void CSCValHists::fill1DHistByType | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
std::string | folder | ||
) |
Definition at line 151 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << endcap << id.station() << id.ring(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder); } theMap[name].first->Fill(x); }
void CSCValHists::fill2DHist | ( | float | z, |
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
std::string | folder | ||
) |
void CSCValHists::fill2DHist | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 136 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
void CSCValHists::fill2DHistByChamber | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 317 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax),folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fill2DHistByCrate | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 220 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
{ int crate = crate_lookup(id); map<string,pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_crate_" << crate; oss2 << title << " (crate " << crate << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fill2DHistByEvent | ( | int | run, |
int | event, | ||
float | x, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
std::string | folder | ||
) |
Definition at line 341 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, event(), HcalObjRepresent::Fill(), mergeVDriftHistosByStation::name, relativeConstraints::station, x, and detailsBasic3DVector::y.
{ string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; map<string,pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << run << "_" << event ; oss2 << title << " ( Run: " << run << " Event: " << event << " )"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),36,0.5,36.5,18,0.5,18.5),folder); } int x = id.chamber(); int y = id.ring(); if (y==4) y =1; //collapsing ME1/1a into ME1/1 if (id.station() >1) y = y + 3 + (id.station()-2)*2; if (id.endcap()==1) y = y+9; else y = -1*y+10; dynamic_cast<TH2F*>(theMap[name].first)->Fill(x,y,z); }
void CSCValHists::fill2DHistByLayer | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 421 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber() << "_L" << id.layer();; oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << "/L" << id.layer() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax),folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fill2DHistByStation | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 268 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << endcap << id.station(); oss2 << title << " (Station " << endcap << id.station() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fill2DHistByType | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 174 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; std::map<std::string,std::pair<TH1*,string> >::iterator it; ostringstream oss1; ostringstream oss2; oss1 << name << endcap << id.station() << id.ring(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fill2DProfile | ( | float | x, |
float | y, | ||
float | z, | ||
std::string | name, | ||
std::string | title, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
int | binsy, | ||
float | ymin, | ||
float | ymax, | ||
float | zmin, | ||
float | zmax, | ||
std::string | folder | ||
) |
Definition at line 513 of file CSCValHists.cc.
References first, and mergeVDriftHistosByStation::name.
{ std::map<std::string,std::pair<TH1*,string> >::iterator it; it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TProfile2D*,string>(new TProfile2D(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax,zmin,zmax), folder); } TProfile2D *tempp = (TProfile2D*)theMap[name].first; tempp->Fill(x,y,z); }
void CSCValHists::fillCalibHist | ( | float | x, |
std::string | name, | ||
std::string | title, | ||
int | bins, | ||
float | xmin, | ||
float | xmax, | ||
int | bin, | ||
std::string | folder | ||
) |
Definition at line 107 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
void CSCValHists::fillProfile | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 446 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
void CSCValHists::fillProfileByChamber | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 487 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::map<std::string,std::pair<TH1*,string> >::iterator it; std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; ostringstream oss1; ostringstream oss2; oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TProfile*,string>(new TProfile(name.c_str(),title.c_str(),binsx,xmin,xmax,ymin,ymax), folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fillProfileByType | ( | float | x, |
float | y, | ||
std::string | name, | ||
std::string | title, | ||
CSCDetId | id, | ||
int | binsx, | ||
float | xmin, | ||
float | xmax, | ||
float | ymin, | ||
float | ymax, | ||
std::string | folder | ||
) |
Definition at line 461 of file CSCValHists.cc.
References Reference_intrackfit_cff::endcap, and mergeVDriftHistosByStation::name.
{ std::map<std::string,std::pair<TH1*,string> >::iterator it; std::string endcap; if (id.endcap() == 1) endcap = "+"; if (id.endcap() == 2) endcap = "-"; ostringstream oss1; ostringstream oss2; oss1 << name << endcap << id.station() << id.ring(); oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")"; name = oss1.str(); title = oss2.str(); it = theMap.find(name); if (it == theMap.end()){ theMap[name] = std::pair<TProfile*,string>(new TProfile(name.c_str(),title.c_str(),binsx,xmin,xmax,ymin,ymax), folder); } theMap[name].first->Fill(x,y); }
void CSCValHists::fillRechitTree | ( | float | x, |
float | y, | ||
float | gx, | ||
float | gy, | ||
int | en, | ||
int | st, | ||
int | ri, | ||
int | ch, | ||
int | la | ||
) |
Definition at line 68 of file CSCValHists.cc.
References x, and detailsBasic3DVector::y.
void CSCValHists::fillSegmentTree | ( | float | x, |
float | y, | ||
float | gx, | ||
float | gy, | ||
int | en, | ||
int | st, | ||
int | ri, | ||
int | ch | ||
) |
Definition at line 84 of file CSCValHists.cc.
References x, and detailsBasic3DVector::y.
void CSCValHists::insertPlot | ( | TH1 * | thePlot, |
std::string | name, | ||
std::string | folder | ||
) |
Definition at line 100 of file CSCValHists.cc.
References mergeVDriftHistosByStation::name.
void CSCValHists::setupTrees | ( | ) |
Definition at line 55 of file CSCValHists.cc.
{ // Create the root tree to hold position info rHTree = new TTree("rHPositions","Local and Global reconstructed positions for recHits"); segTree = new TTree("segPositions","Local and Global reconstructed positions for segments"); // Create a branch on the tree rHTree->Branch("rHpos",&rHpos,"endcap/I:station/I:ring/I:chamber/I:layer/I:localx/F:localy/F:globalx/F:globaly/F"); segTree->Branch("segpos",&segpos,"endcap/I:station/I:ring/I:chamber/I:layer/I:localx/F:localy/F:globalx/F:globaly/F"); }
void CSCValHists::writeHists | ( | TFile * | theFile | ) |
Definition at line 19 of file CSCValHists.cc.
References spr::find().
{ std::vector<std::string> theFolders; std::vector<std::string>::iterator fit; theFile->cd(); std::map<std::string,std::pair<TH1*,string> >::const_iterator mapit; for (mapit = theMap.begin(); mapit != theMap.end(); mapit++){ std::string folder = (*mapit).second.second.c_str(); fit = find(theFolders.begin(), theFolders.end(), folder); if (fit == theFolders.end()){ theFolders.push_back(folder); theFile->mkdir(folder.c_str()); } theFile->cd((*mapit).second.second.c_str()); (*mapit).second.first->Write(); theFile->cd(); } }
void CSCValHists::writeTrees | ( | TFile * | theFile | ) |
struct CSCValHists::posRecord CSCValHists::rHpos [private] |
TTree* CSCValHists::rHTree [private] |
Definition at line 191 of file CSCValHists.h.
struct CSCValHists::posRecord CSCValHists::segpos [private] |
TTree* CSCValHists::segTree [private] |
Definition at line 192 of file CSCValHists.h.
std::map<std::string,std::pair<TH1*,std::string> > CSCValHists::theMap [private] |
Definition at line 175 of file CSCValHists.h.