ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/LJMet/Utils/interface/PlotReco.h
Revision: 1.3
Committed: Sun Dec 6 21:06:12 2009 UTC (15 years, 4 months ago) by kukartse
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +5 -1 lines
Log Message:
*** empty log message ***

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.3 // $Id: PlotReco.h,v 1.2 2009/12/02 19:42:47 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 kukartse 1.3 void init_leaves(void) ;
46    
47 kukartse 1.2 TTree * _tree;
48     Int_t ievent, ilumi, irun;
49     Int_t njets;
50     Double_t jet1_pt, jet1_eta, jet1_phi;
51 kukartse 1.3 std::vector<double> jet_pt, jet_eta, jet_phi;
52     std::vector<double> track_pt, track_eta, track_phi;
53 kukartse 1.1 };
54    
55     #endif