CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BenchmarkTree.cc
Go to the documentation of this file.
2 
3 
4 
6  const char* title)
7  : TTree( name, title ),
8  entry_( new BenchmarkTreeEntry ) {
9 
10  Branch( "benchmarkEntry","BenchmarkTreeEntry", &entry_ );
11 }
12 
14  *entry_ = entry;
15  TTree::Fill();
16 }
BenchmarkTreeEntry * entry_
Definition: BenchmarkTree.h:41
void Fill(const BenchmarkTreeEntry &entry)
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
std::pair< std::string, MonitorElement * > entry
Definition: ME_MAP.h:8
BenchmarkTree(const char *name, const char *title)
Definition: BenchmarkTree.cc:5