CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/L1Trigger/HardwareValidation/plugins/MuonCandProducerMon.h

Go to the documentation of this file.
00001 #ifndef MUONCANDPRODUCER_MON_H
00002 #define MUONCANDPRODUCER_MON_H
00003 
00004 /*\class MuonCandProducerMon
00005  *\description Creates full regional muon candidates
00006  *             CSCTF: from l1track provided by tf unpacker
00007  *             DTTF: from L1MuDTTrackContainer by tf unpacker
00008  *\author N.Leonardo, K.Kotov
00009  *\date 08.04
00010  */
00011 
00012 // common/system includes
00013 #include <memory>
00014 #include <string>
00015 #include <iostream>
00016 #include <fstream>
00017 #include <iomanip>
00018 #include <vector>
00019 #include <algorithm>
00020 #include "FWCore/ServiceRegistry/interface/Service.h"
00021 #include "FWCore/Framework/interface/Frameworkfwd.h"
00022 #include "FWCore/Framework/interface/EDProducer.h"
00023 #include "FWCore/Framework/interface/Event.h"
00024 #include "FWCore/Framework/interface/MakerMacros.h"
00025 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00026 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00027 
00028 #include <L1Trigger/CSCTrackFinder/interface/CSCTFPtLUT.h>
00029 #include "DataFormats/L1CSCTrackFinder/interface/L1CSCTrackCollection.h"
00030 #include "DataFormats/L1DTTrackFinder/interface/L1MuDTTrackContainer.h"
00031 
00032 class MuonCandProducerMon : public edm::EDProducer {
00033 
00034 public:
00035 
00036   explicit MuonCandProducerMon(const edm::ParameterSet&);
00037   ~MuonCandProducerMon();
00038 
00039 private:
00040   virtual void beginJob(void) {};
00041   //virtual void beginRun(edm::Run&, const edm::EventSetup&);
00042   virtual void produce (edm::Event&, const edm::EventSetup&);
00043   virtual void endJob();
00044 
00045   int verbose() {return verbose_;}
00046 
00047  private:
00048 
00049   int verbose_;
00050   edm::InputTag CSCinput_;
00051   edm::InputTag DTinput_;
00052   CSCTFPtLUT *cscPtLUT_;
00053   unsigned long long m_scalesCacheID ;
00054   unsigned long long m_ptScaleCacheID ;
00055 
00056 };
00057 
00058 #endif