Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:47

0001 /*
0002  * L1GtTriggerMenuLite.C
0003  *
0004  *  Created on: Feb 14, 2010
0005  *      Author: ghete
0006  */
0007 
0008 #include "DataFormats/FWLite/interface/Handle.h"
0009 #include "DataFormats/FWLite/interface/Event.h"
0010 #include "DataFormats/FWLite/interface/Run.h"
0011 #include "TFile.h"
0012 #include "TH1.h"
0013 #include "TCanvas.h"
0014 #include "TLegend.h"
0015 
0016 #if !defined(__CINT__) && !defined(__MAKECINT__)
0017 
0018 // headers for the data items
0019 #include "DataFormats/L1GlobalTrigger/interface/L1GtTriggerMenuLite.h"
0020 
0021 #endif
0022 
0023 void L1GtTriggerMenuLite() {
0024 
0025     TFile file("L1GtTriggerMenuLite_output.root");
0026 
0027     fwlite::Run run(&file);
0028 
0029     for (run.toBegin(); !run.atEnd(); ++run) {
0030 
0031         //fwlite::Handle<L1GtTriggerMenuLite> trigMenu;
0032         //trigMenu.getbyLabel(ev, "l1GtTriggerMenuLite");
0033     }
0034 
0035     std::cout << "\nEnd FWLite\n";
0036 
0037 }