Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:24:28

0001 // -*- C++ -*-
0002 //
0003 // utilitiesTestGlobalFixture.h is a part of Herwig - A multi-purpose Monte Carlo event generator
0004 // Copyright (C) 2002-2019 The Herwig Collaboration, 2015 Marco A. Harrendorf
0005 //
0006 // Herwig is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #include <boost/test/unit_test.hpp>
0010 
0011 #include "ThePEG/Repository/StandardRandom.h"
0012 #include "ThePEG/Repository/UseRandom.h"
0013 #include "ThePEG/Config/Unitsystem.h"
0014 
0015 struct FixGlobal1 {
0016   FixGlobal1() : randomNumberStandardGenerator(), dummy(&randomNumberStandardGenerator) {
0017     BOOST_TEST_MESSAGE( "setup global fixture for utilitiesTest" ); 
0018   }
0019   
0020   ~FixGlobal1()  { BOOST_TEST_MESSAGE( "teardown global fixture for utilitiesTest" ); }
0021 
0022   ThePEG::StandardRandom randomNumberStandardGenerator;
0023   ThePEG::UseRandom dummy;
0024 };
0025 
0026 BOOST_GLOBAL_FIXTURE(FixGlobal1);