CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DQMOffline/Trigger/interface/HLTInclusiveVBFClient.h

Go to the documentation of this file.
00001 #ifndef DQMOFFLINE_TRIGGER_HLTInclusiveVBFClient
00002 #define DQMOFFLINE_TRIGGER_HLTInclusiveVBFClient
00003 
00004 // -*- C++ -*-
00005 //
00006 // Package:    HLTInclusiveVBFClient
00007 // Class:      HLTInclusiveVBFClient
00008 // 
00009 
00010 #include <memory>
00011 #include <unistd.h>
00012 #include <FWCore/Framework/interface/EDAnalyzer.h>
00013 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00014 #include "DQMServices/Core/interface/MonitorElement.h"
00015 #include "DQMServices/Core/interface/DQMStore.h"
00016 #include "DataFormats/Common/interface/Handle.h"
00017 #include "FWCore/Framework/interface/Event.h"
00018 #include "FWCore/Framework/interface/EventSetup.h"
00019 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00020 #include "FWCore/ServiceRegistry/interface/Service.h"
00021 #include "DataFormats/Math/interface/LorentzVector.h"
00022 
00023 #include "DataFormats/Common/interface/TriggerResults.h"
00024 #include "DataFormats/HLTReco/interface/TriggerEvent.h"
00025 #include "DataFormats/HLTReco/interface/TriggerObject.h"
00026 #include "DataFormats/HLTReco/interface/TriggerTypeDefs.h"
00027 #include "HLTrigger/HLTcore/interface/HLTConfigProvider.h"
00028 
00029 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
00030 #include "DataFormats/METReco/interface/CaloMETCollection.h"
00031 #include "DataFormats/METReco/interface/CaloMET.h"
00032 
00033 #include <iostream>
00034 #include <fstream>
00035 #include <vector>
00036 
00037 class DQMStore;
00038 class MonitorElement;
00039 
00040 class HLTInclusiveVBFClient : public edm::EDAnalyzer {
00041  
00042  private:
00043   DQMStore* dbe_; //dbe seems to be the standard name for this, I dont know why. We of course dont own it
00044 
00045   edm::ParameterSet conf_;
00046 
00047   bool debug_;
00048   bool verbose_;
00049 
00050   std::string dirName_;
00051   std::string hltTag_;
00052   std::string processname_;
00053 
00054  public:
00055   explicit HLTInclusiveVBFClient(const edm::ParameterSet& );
00056   virtual ~HLTInclusiveVBFClient();
00057   
00058   virtual void beginJob();
00059   virtual void endJob();
00060   virtual void beginRun(const edm::Run& run, const edm::EventSetup& c);
00061   virtual void endRun(const edm::Run& run, const edm::EventSetup& c);
00062   virtual void analyze(const edm::Event&, const edm::EventSetup&);
00063   virtual void beginLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& c);
00064   virtual void endLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& c);
00065   virtual void runClient_();   
00066 
00067 };
00068  
00069 #endif