CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/DQM/SiStripCommissioningSources/plugins/tracking/ClusterCount.h

Go to the documentation of this file.
00001 #ifndef CLUSTERCOUNT_H
00002 #define CLUSTERCOUNT_H
00003 // -*- C++ -*-
00004 //
00005 // Package:    ClusterCount
00006 // Class:      ClusterCount
00007 // 
00015 //
00016 // Original Author:  Christophe DELAERE
00017 //         Created:  Tue May 27 11:11:05 CEST 2008
00018 // $Id: ClusterCount.h,v 1.3 2010/02/20 20:59:01 wmtan Exp $
00019 //
00020 //
00021 
00022 
00023 // system include files
00024 #include <memory>
00025 
00026 // user include files
00027 #include "FWCore/Framework/interface/Frameworkfwd.h"
00028 #include "FWCore/Framework/interface/EDAnalyzer.h"
00029 
00030 #include "FWCore/Framework/interface/Event.h"
00031 #include "FWCore/Framework/interface/MakerMacros.h"
00032 
00033 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00034 
00035 #include "DataFormats/SiStripCluster/interface/SiStripCluster.h"
00036 #include "DataFormats/SiStripCluster/interface/SiStripClusterCollection.h"
00037 #include "FWCore/Utilities/interface/InputTag.h"
00038 #include <DataFormats/Common/interface/DetSetVector.h>
00039 
00040 //
00041 // class decleration
00042 //
00043 
00044 class ClusterCount : public edm::EDAnalyzer {
00045 
00046    public:
00047 
00048       explicit ClusterCount(const edm::ParameterSet&);
00049       ~ClusterCount();
00050 
00051 
00052    private:
00053 
00054       virtual void analyze(const edm::Event&, const edm::EventSetup&);
00055 
00056       // ----------member data ---------------------------
00057       edm::InputTag clusterLabel_;
00058 
00059 };
00060 
00061 #endif
00062