Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #include <vector>
00008
00009 #include <numeric>
00010 #include <iostream>
00011
00012
00013
00014 #include "FWCore/ServiceRegistry/interface/Service.h"
00015
00016 #include "DQM/SiStripMonitorCluster/interface/MonitorLTC.h"
00017 #include "DQMServices/Core/interface/DQMStore.h"
00018
00019 #include "DataFormats/LTCDigi/interface/LTCDigi.h"
00020
00021 MonitorLTC::MonitorLTC(const edm::ParameterSet& iConfig) :
00022 ltcDigiCollectionTag_(iConfig.getParameter<edm::InputTag>("ltcDigiCollectionTag"))
00023 {
00024 HLTDirectory="HLTResults";
00025 dqmStore_ = edm::Service<DQMStore>().operator->();
00026 conf_ = iConfig;
00027 }
00028
00029
00030 void MonitorLTC::beginJob(){
00031 dqmStore_->setCurrentFolder(HLTDirectory);
00032
00033
00034
00035
00036
00037
00038
00039
00040 std::string the_label = conf_.getParameter<std::string>("@module_label");
00041 std::string ltctitle = the_label + "_LTCTriggerDecision";
00042 LTCTriggerDecision_all = dqmStore_->book1D(ltctitle, ltctitle, 8, -0.5, 7.5);
00043 LTCTriggerDecision_all->setBinLabel(1, "DT");
00044 LTCTriggerDecision_all->setBinLabel(2, "CSC");
00045 LTCTriggerDecision_all->setBinLabel(3, "RBC1");
00046 LTCTriggerDecision_all->setBinLabel(4, "RBC2");
00047 LTCTriggerDecision_all->setBinLabel(5, "RPCTB");
00048 }
00049
00050 void MonitorLTC::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup)
00051 {
00052 edm::Handle<LTCDigiCollection> ltcdigis; iEvent.getByLabel(ltcDigiCollectionTag_, ltcdigis);
00053
00054
00055
00056
00057
00058
00059
00060
00061 for( LTCDigiCollection::const_iterator ltcdigiItr = ltcdigis->begin() ; ltcdigiItr != ltcdigis->end() ; ++ltcdigiItr ) {
00062
00063
00064
00065
00066
00067
00068
00069
00070 for ( int ibit = 0; ibit < 7; ++ibit ) {
00071 if ( ltcdigiItr->HasTriggered(ibit) ) {
00072 LTCTriggerDecision_all->Fill(ibit,1.);
00073 }
00074 }
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088 }
00089
00090 }
00091
00092 void MonitorLTC::endJob(void){
00093 bool outputMEsInRootFile = conf_.getParameter<bool>("OutputMEsInRootFile");
00094 std::string outputFileName = conf_.getParameter<std::string>("OutputFileName");
00095 if(outputMEsInRootFile){
00096 dqmStore_->save(outputFileName);
00097 }
00098 }
00099