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 {
00023 HLTDirectory="HLTResults";
00024 dqmStore_ = edm::Service<DQMStore>().operator->();
00025 conf_ = iConfig;
00026 }
00027
00028
00029 void MonitorLTC::beginJob(){
00030 dqmStore_->setCurrentFolder(HLTDirectory);
00031
00032
00033
00034
00035
00036
00037
00038
00039 std::string the_label = conf_.getParameter<std::string>("@module_label");
00040 std::string ltctitle = the_label + "_LTCTriggerDecision";
00041 LTCTriggerDecision_all = dqmStore_->book1D(ltctitle, ltctitle, 8, -0.5, 7.5);
00042 LTCTriggerDecision_all->setBinLabel(1, "DT");
00043 LTCTriggerDecision_all->setBinLabel(2, "CSC");
00044 LTCTriggerDecision_all->setBinLabel(3, "RBC1");
00045 LTCTriggerDecision_all->setBinLabel(4, "RBC2");
00046 LTCTriggerDecision_all->setBinLabel(5, "RPCTB");
00047 }
00048
00049 void MonitorLTC::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup)
00050 {
00051 edm::Handle<LTCDigiCollection> ltcdigis; iEvent.getByType(ltcdigis);
00052
00053
00054
00055
00056
00057
00058
00059
00060 for( LTCDigiCollection::const_iterator ltcdigiItr = ltcdigis->begin() ; ltcdigiItr != ltcdigis->end() ; ++ltcdigiItr ) {
00061
00062
00063
00064
00065
00066
00067
00068
00069 for ( int ibit = 0; ibit < 7; ++ibit ) {
00070 if ( ltcdigiItr->HasTriggered(ibit) ) {
00071 LTCTriggerDecision_all->Fill(ibit,1.);
00072 }
00073 }
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087 }
00088
00089 }
00090
00091 void MonitorLTC::endJob(void){
00092 bool outputMEsInRootFile = conf_.getParameter<bool>("OutputMEsInRootFile");
00093 std::string outputFileName = conf_.getParameter<std::string>("OutputFileName");
00094 if(outputMEsInRootFile){
00095 dqmStore_->save(outputFileName);
00096 }
00097 }
00098