CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripMonitorHLT.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiStripMonitorCluster
4 // Class: SiStripMonitorHLT
5 //
6 //class SiStripMonitorHLT SiStripMonitorHLT.cc DQM/SiStripMonitorCluster/src/SiStripMonitorHLT.cc
7 #include <vector>
8 
9 #include <numeric>
10 #include <iostream>
11 
14 
15 
17 
20 
21 
23 {
24  HLTDirectory="HLTResults";
26  conf_ = iConfig;
27 }
28 
29 
31 
33  std::string HLTProducer = conf_.getParameter<std::string>("HLTProducer");
34  HLTDecision = dqmStore_->book1D(HLTProducer+"_HLTDecision", HLTProducer+"HLTDecision", 2, -0.5, 1.5);
35  // all
36  SumOfClusterCharges_all = dqmStore_->book1D("SumOfClusterCharges_all", "SumOfClusterCharges_all", 50, 0, 2000);
37  ChargeOfEachClusterTIB_all = dqmStore_->book1D("ChargeOfEachClusterTIB_all", "ChargeOfEachClusterTIB_all", 400, -0.5, 400.5);
38  ChargeOfEachClusterTOB_all = dqmStore_->book1D("ChargeOfEachClusterTOB_all", "ChargeOfEachClusterTOB_all", 400, -0.5, 400.5);
39  ChargeOfEachClusterTEC_all = dqmStore_->book1D("ChargeOfEachClusterTEC_all", "ChargeOfEachClusterTEC_all", 400, -0.5, 400.5);
40  NumberOfClustersAboveThreshold_all = dqmStore_->book1D("NumberOfClustersAboveThreshold_all", "NumberOfClustersAboveThreshold_all", 30, 30.5, 60.5);
41  // 31 = TIB2, 32 = TIB2, 33 = TIB3, 51 = TOB1, 52=TOB2, 60 = TEC
42  // accepted from HLT
43  SumOfClusterCharges_hlt = dqmStore_->book1D("SumOfClusterCharges_hlt", "SumOfClusterCharges_hlt", 50, 0, 2000);
44  ChargeOfEachClusterTIB_hlt = dqmStore_->book1D("ChargeOfEachClusterTIB_hlt", "ChargeOfEachClusterTIB_hlt", 400, -0.5, 400.5);
45  ChargeOfEachClusterTOB_hlt = dqmStore_->book1D("ChargeOfEachClusterTOB_hlt", "ChargeOfEachClusterTOB_hlt", 400, -0.5, 400.5);
46  ChargeOfEachClusterTEC_hlt = dqmStore_->book1D("ChargeOfEachClusterTEC_hlt", "ChargeOfEachClusterTEC_hlt", 400, -0.5, 400.5);
47  NumberOfClustersAboveThreshold_hlt = dqmStore_->book1D("NumberOfClustersAboveThreshold_hlt", "NumberOfClustersAboveThreshold_hlt", 30, 30.5, 60.5);
48 }
49 
51 {
52 
53  // get from event
54  std::string HLTProducer = conf_.getParameter<std::string>("HLTProducer");
55  edm::Handle<int> filter_decision; iEvent.getByLabel(HLTProducer, "", filter_decision); // filter decision
56  edm::Handle<uint> sum_of_clustch; iEvent.getByLabel(HLTProducer, "", sum_of_clustch); // sum of cluster charges
57  // first element of pair: layer: TIB1, ...., TEC; second element: nr of clusters above threshold
58  edm::Handle<std::map<uint,std::vector<SiStripCluster> > > clusters_in_subcomponents;
59  if(HLTProducer=="ClusterMTCCFilter") iEvent.getByLabel(HLTProducer, "", clusters_in_subcomponents);
60 
61  // trigger decision
62  HLTDecision->Fill(*filter_decision);
63 
64  // sum of charges of clusters
65  SumOfClusterCharges_all->Fill(*sum_of_clustch);
66  if(*filter_decision) SumOfClusterCharges_hlt->Fill(*sum_of_clustch);
67 
68  //clusters in different layers
69  if(HLTProducer=="ClusterMTCCFilter"){
70  // loop over layers ("subcomponents")
71  for(std::map<uint,std::vector<SiStripCluster> >::const_iterator it = clusters_in_subcomponents->begin(); it != clusters_in_subcomponents->end(); it++){
72  int generalized_layer = it->first;
73  std::vector<SiStripCluster> theclusters = it->second;
74  NumberOfClustersAboveThreshold_all->Fill( generalized_layer, theclusters.size() ); // number of clusters in this generalized layer
75  if(*filter_decision) NumberOfClustersAboveThreshold_hlt->Fill( generalized_layer, theclusters.size() );
76  //loop over clusters (and detids)
77  for(std::vector<SiStripCluster>::const_iterator icluster = theclusters.begin(); icluster != theclusters.end(); icluster++){
78  // calculate sum of amplitudes
79  unsigned int amplclus=0;
80  for(std::vector<uint8_t>::const_iterator ia=icluster->amplitudes().begin(); ia!=icluster->amplitudes().end(); ia++) {
81  if ((*ia)>0) amplclus+=(*ia); // why should this be negative?
82  }
83  if(generalized_layer==31 || generalized_layer==32 || generalized_layer==33){ // you can also ask the detid here whether is TIB
84  ChargeOfEachClusterTIB_all->Fill(amplclus,1.);
85  if(*filter_decision) ChargeOfEachClusterTIB_hlt->Fill(amplclus,1.);
86  }
87  if(generalized_layer==51 || generalized_layer==52){
88  ChargeOfEachClusterTOB_all->Fill(amplclus,1.);
89  if(*filter_decision) ChargeOfEachClusterTOB_hlt->Fill(amplclus,1.);
90  }
91  if(generalized_layer==60 ){
92  ChargeOfEachClusterTEC_all->Fill(amplclus,1.);
93  if(*filter_decision) ChargeOfEachClusterTEC_hlt->Fill(amplclus,1.);
94  }
95  }
96  }
97  }
98 }
99 
101  edm::LogInfo("DQM|SiStripMonitorHLT")<<"Events rejected/accepted "<<HLTDecision->getBinContent(1)<<"/"<<HLTDecision->getBinContent(2);
102  bool outputMEsInRootFile = conf_.getParameter<bool>("OutputMEsInRootFile");
103  std::string outputFileName = conf_.getParameter<std::string>("OutputFileName");
104  if(outputMEsInRootFile){
105  dqmStore_->save(outputFileName);
106  }
107 
108  // delete MEs
109 // LogInfo("SiStripTkDQM|SiStripMonitorHLT")<<"pwd="<<dqmStore_->pwd();
111 // dqmStore_->cd();
112 // std::string folder_to_delete = HLTDirectory;
113 // LogInfo("SiStripTkDQM|SiStripMonitorHLT")<<" Removing whole directory "<<folder_to_delete;
114 // dqmStore_->rmdir(folder_to_delete);
115 
116 }
117 
T getParameter(std::string const &) const
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:514
void save(const std::string &filename, const std::string &path="", const std::string &pattern="", const std::string &rewrite="", SaveReferenceTag ref=SaveWithReference, int minStatus=dqm::qstatus::STATUS_OK, const std::string &fileupdate="RECREATE")
Definition: DQMStore.cc:1898
MonitorElement * NumberOfClustersAboveThreshold_all
void Fill(long long x)
MonitorElement * SumOfClusterCharges_all
int iEvent
Definition: GenABIO.cc:243
MonitorElement * ChargeOfEachClusterTEC_hlt
virtual void analyze(const edm::Event &, const edm::EventSetup &)
std::string HLTDirectory
MonitorElement * ChargeOfEachClusterTIB_all
MonitorElement * NumberOfClustersAboveThreshold_hlt
MonitorElement * HLTDecision
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
MonitorElement * ChargeOfEachClusterTEC_all
MonitorElement * SumOfClusterCharges_hlt
virtual void beginJob()
MonitorElement * ChargeOfEachClusterTOB_hlt
SiStripMonitorHLT(const edm::ParameterSet &)
double getBinContent(int binx) const
get content of bin (1-D)
MonitorElement * ChargeOfEachClusterTIB_hlt
MonitorElement * ChargeOfEachClusterTOB_all
virtual void endJob()
edm::ParameterSet conf_
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:232