rootlogon.C 997 B

12345678910111213141516171819202122232425
  1. /********************************************************************************
  2. * Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
  3. * *
  4. * This software is distributed under the terms of the *
  5. * GNU Lesser General Public Licence version 3 (LGPL) version 3, *
  6. * copied verbatim in the file "LICENSE" *
  7. ********************************************************************************/
  8. rootlogon()
  9. {
  10. gROOT->LoadMacro("$VMCWORKDIR/gconfig/basiclibs.C");
  11. basiclibs();
  12. // Load this example libraries
  13. gSystem->Load("libFairTools");
  14. gSystem->Load("libGeoBase");
  15. gSystem->Load("libParBase");
  16. gSystem->Load("libBase");
  17. gSystem->Load("libMCStack");
  18. gSystem->Load("libField");
  19. gSystem->Load("libPassive");
  20. gSystem->Load("libGen");
  21. gSystem->Load("libPGen");
  22. gSystem->Load("libGeane");
  23. }