1 |
// -*- C++ -*-
|
2 |
#ifndef Plot_Reco
|
3 |
#define Plot_Reco
|
4 |
//
|
5 |
// Package: PlotReco
|
6 |
// Class: PlotReco
|
7 |
//
|
8 |
/**\class PlotReco PlotReco.h LJMet/Utils/interface/PlotReco.h
|
9 |
|
10 |
Description: Quick look at the RECO data
|
11 |
|
12 |
Implementation:
|
13 |
Keep this class as simple and fast as possible
|
14 |
*/
|
15 |
//
|
16 |
// Original Author: "Gena Kukartsev"
|
17 |
// Created: Tue Nov 10 13:39:12 CDT 2009
|
18 |
// $Id: PlotReco.h,v 1.1 2009/10/27 23:24:11 kukartse Exp $
|
19 |
//
|
20 |
//
|
21 |
|
22 |
|
23 |
#include <memory>
|
24 |
#include "FWCore/Framework/interface/Frameworkfwd.h"
|
25 |
#include "FWCore/Framework/interface/EDAnalyzer.h"
|
26 |
#include "FWCore/Framework/interface/Event.h"
|
27 |
#include "FWCore/Framework/interface/MakerMacros.h"
|
28 |
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
29 |
#include "LJMet/Utils/interface/MeanCounter.h"
|
30 |
|
31 |
|
32 |
class PlotReco : public edm::EDAnalyzer {
|
33 |
public:
|
34 |
explicit PlotReco(const edm::ParameterSet&);
|
35 |
~PlotReco();
|
36 |
|
37 |
|
38 |
private:
|
39 |
virtual void beginJob() ;
|
40 |
virtual void analyze(const edm::Event&, const edm::EventSetup&);
|
41 |
virtual void endJob() ;
|
42 |
};
|
43 |
|
44 |
#endif
|