StFemtoV0.cxx 578 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // The StFemtoV0 class holds indices of positive and
  3. // negative daughters in StFemtoTrack array
  4. //
  5. // C++ headers
  6. #include <iostream>
  7. // FemtoDst headers
  8. #include "StFemtoV0.h"
  9. ClassImp(StFemtoV0)
  10. //________________
  11. StFemtoV0::StFemtoV0() : TObject(), mPosId(0), mNegId(0) {
  12. /* empty */
  13. }
  14. //________________
  15. StFemtoV0::StFemtoV0(const StFemtoV0 &v0) :
  16. TObject(), mPosId(v0.mPosId), mNegId(v0.mNegId) {
  17. /* empty */
  18. }
  19. //________________
  20. void StFemtoV0::print() {
  21. std::cout << "V0 daughters. PosId: " << mPosId << " NegId: "
  22. << mNegId << std::endl;
  23. }