CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/Fireworks/FWInterface/interface/FWFFHelper.h

Go to the documentation of this file.
00001 #ifndef Fireworks_FWInterface_FWFFHelper_h
00002 #define Fireworks_FWInterface_FWFFHelper_h
00003 
00004 namespace edm
00005 {
00006    class ParameterSet;
00007    class ActivityRegistry;
00008 }
00009 
00010 class TRint;
00011 
00012 class FWFFHelper
00013 {
00014 public:
00015    FWFFHelper(const edm::ParameterSet &, const edm::ActivityRegistry &);
00016    TRint *app() { return m_Rint; }
00017 private:
00018    TRint        *m_Rint;
00019 };
00020 
00021 #endif