StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTrackListCutTest.hh
1 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
2 #ifndef STJTRACKLISTCUTTEST_HH
3 #define STJTRACKLISTCUTTEST_HH
4 
5 #include <cppunit/extensions/HelperMacros.h>
6 
7 class StjTrackListCutTest : public CPPUNIT_NS::TestFixture
8 {
9  CPPUNIT_TEST_SUITE( StjTrackListCutTest );
10  CPPUNIT_TEST( testNHits );
11  CPPUNIT_TEST( testFlag );
12  CPPUNIT_TEST( test2005 );
13  CPPUNIT_TEST( test2006 );
14  CPPUNIT_TEST_SUITE_END();
15 
16 public:
17  void setUp();
18  void tearDown();
19 
20  void testFlag();
21  void testNHits();
22  void test2005();
23  void test2006();
24 
25 private:
26 
27 };
28 
29 #endif // STJTRACKLISTCUTTEST_HH