FairGeoTarget.cxx 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. //*-- AUTHOR : Ilse Koenig
  9. //*-- Created : 10/11/2003
  10. /////////////////////////////////////////////////////////////
  11. // FairGeoTarget
  12. //
  13. // Class for geometry of Target
  14. //
  15. /////////////////////////////////////////////////////////////
  16. #include "FairGeoTarget.h"
  17. #include "TString.h" // for TString
  18. #include <string.h> // for strcpy
  19. ClassImp(FairGeoTarget)
  20. FairGeoTarget::FairGeoTarget()
  21. : FairGeoSet()
  22. {
  23. // Constructor
  24. fName="target";
  25. strcpy(modName,"t");
  26. strcpy(eleName,"t");
  27. maxSectors=0;
  28. maxModules=1;
  29. }