Go to the documentation of this file.00001 #ifndef CLUSTERCOUNT_H
00002 #define CLUSTERCOUNT_H
00003
00004
00005
00006
00007
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <memory>
00025
00026
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
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
00057 edm::InputTag clusterLabel_;
00058
00059 };
00060
00061 #endif
00062