CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/Fireworks/Core/interface/FWLiteJobMetadataUpdateRequest.h

Go to the documentation of this file.
00001 #ifndef Fireworks_Core_FWLiteJobMetadataUpdateRequest
00002 #define Fireworks_Core_FWLiteJobMetadataUpdateRequest
00003 
00004 #include "Fireworks/Core/interface/FWJobMetadataUpdateRequest.h"
00005 
00006 namespace fwlite
00007 {
00008    class Event;
00009 }
00010 
00011 class TFile;
00012 
00013 
00014 class FWLiteJobMetadataUpdateRequest : public FWJobMetadataUpdateRequest
00015 {
00016 public:
00017    FWLiteJobMetadataUpdateRequest(const fwlite::Event *event, 
00018                                   const TFile *file)
00019       : event_(event), file_(file)
00020    {
00021       
00022    }
00023    
00024    const fwlite::Event *event_;
00025    const TFile *file_;
00026 };
00027 
00028 #endif