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

Comparing UserCode/MitPhysics/Mods/interface/JetCleaningMod.h (file contents):
Revision 1.6 by loizides, Wed Dec 10 11:44:33 2008 UTC vs.
Revision 1.8 by loizides, Mon Mar 23 14:23:06 2009 UTC

# Line 22 | Line 22 | namespace mithep
22      public:
23        JetCleaningMod(const char *name="JetCleaningMod",
24                       const char *title="Jet cleaning module");
25      ~JetCleaningMod() {}
25  
26 <      void               SetCleanElectronsName(const char *name)  { fCleanElectronsName = name; }
27 <      void               SetCleanPhotonsName(const char *name)    { fCleanPhotonsName = name; }
28 <      void               SetGoodJetsName(const char *name)        { fGoodJetsName       = name; }  
29 <      void               SetCleanJetsName(const char *name)       { fCleanJetsName      = name; }
30 <      void               SetMinDeltaRToElectron(const Double_t x) { fMinDeltaRToElectron   = x; }
31 <      void               SetMinDeltaRToPhoton(const Double_t x)   { fMinDeltaRToPhoton   = x;   }
26 >      const char        *GetCleanElectronsName()  const { return fCleanElectronsName;  }
27 >      const char        *GetCleanJetsName()       const { return fCleanJetsName;       }
28 >      const char        *GetCleanName()           const { return GetCleanJetsName();   }
29 >      const char        *GetCleanPhotonsName()    const { return fCleanPhotonsName;    }
30 >      const char        *GetGoodJetsName()        const { return fGoodJetsName;        }  
31 >      Double_t           GetMinDeltaRToElectron() const { return fMinDeltaRToElectron; }
32 >      Double_t           GetMinDeltaRToPhoton()   const { return fMinDeltaRToPhoton;   }
33 >      const char        *GetOutputName()          const { return GetCleanJetsName();   }
34 >      void               SetCleanElectronsName(const char *name) { fCleanElectronsName  = name; }
35 >      void               SetCleanJetsName(const char *name)      { fCleanJetsName       = name; }
36 >      void               SetCleanName(const char *name)          { SetCleanJetsName(name);      }
37 >      void               SetCleanPhotonsName(const char *name)   { fCleanPhotonsName    = name; }
38 >      void               SetGoodJetsName(const char *name)       { fGoodJetsName        = name; }  
39 >      void               SetMinDeltaRToElectron(Double_t dr)     { fMinDeltaRToElectron = dr;   }
40 >      void               SetMinDeltaRToPhoton(Double_t dr)       { fMinDeltaRToPhoton   = dr;   }
41 >      void               SetOutputName(const char *name)         { SetCleanJetsName(name);      }
42  
43      protected:
44        void               Process();
# Line 41 | Line 50 | namespace mithep
50        Double_t           fMinDeltaRToElectron;  //delta R for separating electrons from jets
51        Double_t           fMinDeltaRToPhoton;    //delta R for separating photons from jets
52    
53 <    ClassDef(JetCleaningMod,1) // Jet cleaning module
53 >    ClassDef(JetCleaningMod, 1) // Jet cleaning module
54    };
55   }
56   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines