Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:23

0001 #include <cppunit/extensions/HelperMacros.h>
0002 #include "PhysicsTools/Utilities/interface/LumiReweightingStandAlone.h"
0003 
0004 class testLumiReweight : public CppUnit::TestFixture {
0005   CPPUNIT_TEST_SUITE(testLumiReweight);
0006   CPPUNIT_TEST(checkAll);
0007   CPPUNIT_TEST_SUITE_END();
0008 
0009 public:
0010   void setUp() {}
0011   void tearDown() {}
0012   void checkAll();
0013 };
0014 
0015 CPPUNIT_TEST_SUITE_REGISTRATION(testLumiReweight);
0016 
0017 void testLumiReweight::checkAll() {}