FairPassiveContFact.h 1.1 KB

1234567891011121314151617181920212223242526272829
  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. #ifndef PNDPASSIVECONTFACT_H
  9. #define PNDPASSIVECONTFACT_H
  10. #include "FairContFact.h" // for FairContFact, etc
  11. #include "Rtypes.h" // for FairPassiveContFact::Class, etc
  12. class FairParSet;
  13. class FairPassiveContFact : public FairContFact
  14. {
  15. private:
  16. void setAllContainers();
  17. public:
  18. FairPassiveContFact();
  19. ~FairPassiveContFact() {}
  20. FairParSet* createContainer(FairContainer*);
  21. ClassDef( FairPassiveContFact,0) // Factory for all Passive parameter containers
  22. };
  23. #endif /* !PNDPASSIVECONTFACT_H */