CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC4_patch1/src/L1TriggerConfig/DTTrackFinder/src/DTExtLutTester.cc

Go to the documentation of this file.
00001 //-------------------------------------------------
00002 //
00003 //   Class: DTExtLutTester
00004 //
00005 //   L1 DT Track Finder Extrapolation Lut Tester
00006 //
00007 //
00008 //   $Date: 2009/05/04 09:26:10 $
00009 //   $Revision: 1.1 $
00010 //
00011 //   Author :
00012 //   J. Troconiz              UAM Madrid
00013 //
00014 //--------------------------------------------------
00015 
00016 #include "L1TriggerConfig/DTTrackFinder/interface/DTExtLutTester.h"
00017 
00018 
00019 DTExtLutTester::DTExtLutTester(const edm::ParameterSet& ps) {}
00020 
00021 
00022 DTExtLutTester::~DTExtLutTester() {}
00023 
00024 
00025 void DTExtLutTester::analyze(const edm::Event& e, const edm::EventSetup& c) {
00026 
00027   edm::ESHandle<L1MuDTExtLut> extlut;
00028   c.get<L1MuDTExtLutRcd>().get( extlut );
00029   extlut->print();
00030 
00031 }