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