ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/JetFitAnalyzer/interface/JetFitAnalyzer.h
(Generate patch)

Comparing UserCode/JetFitAnalyzer/interface/JetFitAnalyzer.h (file contents):
Revision 1.1 by dnisson, Fri Sep 11 19:05:51 2009 UTC vs.
Revision 1.7.2.1 by dnisson, Sun Jan 10 01:11:24 2010 UTC

# Line 1 | Line 1
1 + #ifndef UserCode_JetFitAnalyzer_JetFitAnalyzer_h
2 + #define UserCode_JetFitAnalyzer_JetFitAnalyzer_h
3 +
4   // system include files
5   #include <memory>
3 #include <string>
6  
7   // user include files
8   #include "FWCore/Framework/interface/Frameworkfwd.h"
# Line 11 | Line 13
13  
14   #include "FWCore/ParameterSet/interface/ParameterSet.h"
15  
14 #include "UserCode/JetFitAnalyzer/interface/jetfit.h"
15
16   #include "TH2.h"
17  
18 < struct indiv_par {
19 <  std::string name;
20 <  double pval;
21 <  double perr;
22 <  double plo;
23 <  double phi;
24 < };
18 > #include <string>
19 > #include <vector>
20 >
21 > #include <TFormula.h>
22 > #include <TString.h>
23 > #include <TMinuit.h>
24 > #include <TH2.h>
25 >
26 > #include "UserCode/JetFitAnalyzer/interface/HistoFitter.h"
27  
28   class JetFitAnalyzer : public edm::EDAnalyzer {
29 < public:
29 > public:
30    explicit JetFitAnalyzer(const edm::ParameterSet&);
31    ~JetFitAnalyzer();
32 <    
33 < protected:
32 >  
33 > protected:
34    virtual void beginJob(const edm::EventSetup&);
35    virtual void analyze(const edm::Event&, const edm::EventSetup&);
36    virtual void endJob();
37 <  virtual TH2D * make_histo(const edm::Event&, const edm::EventSetup&) = 0;
38 <  virtual jetfit::model_def& make_model_def(const edm::Event&,
39 <                                           const edm::EventSetup&,
40 <                                           TH2 *hist) = 0;
41 <  virtual void analyze_results(jetfit::results, std::vector<jetfit::trouble>,
37 >  virtual TH2D * make_histo(const edm::Event&, const edm::EventSetup&);
38 >  virtual HistoFitter::ModelDefinition& make_model_def(const edm::Event&,
39 >                                                       const edm::EventSetup&,
40 >                                                       TH2 *hist);
41 >  virtual void analyze_results(HistoFitter::FitResults,
42 >                               std::vector<HistoFitter::Trouble>,
43                                 TH2 *) = 0;
41  void set_user_minuit(void (*_user_minuit)(TMinuit *, TH2 *, int) ) {
42    user_minuit = _user_minuit;
43  }
44  
45 < private:
45 >  private:
46    // ----------member data ---------------------------
47  bool ignorezero_;
48  int rebinX_;
49  int rebinY_;
47    double P_cutoff_val_;
48 <  void (*user_minuit)(TMinuit *, TH2 *, int);
48 >  int infoType_;
49 >  double smear_;
50 >  std::string jet_algo_;
51   };
52  
53   //
# Line 58 | Line 57 | private:
57   //
58   // static data member definitions
59   //
60 +
61 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines