ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/LJMet/Utils/interface/PlotReco.h
Revision: 1.2
Committed: Wed Dec 2 19:42:47 2009 UTC (15 years, 5 months ago) by kukartse
Content type: text/plain
Branch: MAIN
Changes since 1.1: +8 -1 lines
Log Message:
EJTerm CVS area added

File Contents

# User Rev Content
1 kukartse 1.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 kukartse 1.2 // $Id: PlotReco.h,v 1.1 2009/11/10 22:29:35 kukartse Exp $
19 kukartse 1.1 //
20     //
21    
22    
23     #include <memory>
24 kukartse 1.2 #include "TTree.h"
25     #include "Rtypes.h"
26 kukartse 1.1 #include "FWCore/Framework/interface/Frameworkfwd.h"
27     #include "FWCore/Framework/interface/EDAnalyzer.h"
28     #include "FWCore/Framework/interface/Event.h"
29     #include "FWCore/Framework/interface/MakerMacros.h"
30     #include "FWCore/ParameterSet/interface/ParameterSet.h"
31     #include "LJMet/Utils/interface/MeanCounter.h"
32    
33    
34     class PlotReco : public edm::EDAnalyzer {
35     public:
36     explicit PlotReco(const edm::ParameterSet&);
37     ~PlotReco();
38    
39    
40     private:
41     virtual void beginJob() ;
42     virtual void analyze(const edm::Event&, const edm::EventSetup&);
43     virtual void endJob() ;
44 kukartse 1.2
45     TTree * _tree;
46     Int_t ievent, ilumi, irun;
47     Int_t njets;
48     Double_t jet1_pt, jet1_eta, jet1_phi;
49 kukartse 1.1 };
50    
51     #endif