StHbtFsiWeight.cc 829 B

12345678910111213141516171819202122232425262728293031
  1. /***************************************************************************
  2. *
  3. * $Id:
  4. *
  5. * Author: Laurent Conin, Fabrice Retiere, Subatech, France
  6. ***************************************************************************
  7. *
  8. * Description : Base class for the Weight calculator
  9. *
  10. ***************************************************************************
  11. *
  12. * $Log:
  13. *
  14. ***************************************************************************/
  15. #include "StHbtMaker/Base/StHbtFsiWeight.hh"
  16. #ifdef __ROOT__
  17. ClassImp(StHbtFsiWeight)
  18. #endif
  19. StHbtFsiWeight::StHbtFsiWeight()
  20. { mWeightDen=1.; }
  21. StHbtFsiWeight::~StHbtFsiWeight()
  22. {/* no-op */};
  23. inline double StHbtFsiWeight::GetWeightDen() {return mWeightDen;}
  24. inline StHbtString StHbtFsiWeight::Report() {return StHbtString("StHbtFsiWeight Default Report");}