fllibs.C 594 B

12345678910111213141516171819202122232425262728
  1. // $Id$
  2. //------------------------------------------------
  3. // The Virtual Monte Carlo examples
  4. // Copyright (C) 2007, Ivana Hrivnacova
  5. // All rights reserved.
  6. //
  7. // For the licensing terms see geant4_vmc/LICENSE.
  8. // Contact: vmc@pcroot.cern.ch
  9. //-------------------------------------------------
  10. /// \file fllibs.C
  11. /// \brief Macro for loading FLUKA libraries
  12. #include <iostream>
  13. void fllibs()
  14. {
  15. /// Macro function for loading FLUKA libraries
  16. cout << "Loading Fluka libraries ..." << endl;
  17. gSystem->Load("libfluka.so");
  18. cout << "Loading Fluka libraries ... finished" << endl;
  19. }