StFemtoXi.cxx 623 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // The StFemtoXi class holds indices of the StFemtoV0 and StFemtoTrack arrays
  3. // which correspond to Xi daughters: Xi^- -> Lambda + pi^-
  4. //
  5. // C++ headers
  6. #include <iostream>
  7. // FemtoDst headers
  8. #include "StFemtoXi.h"
  9. ClassImp(StFemtoXi)
  10. //________________
  11. StFemtoXi::StFemtoXi() : TObject(), mV0Id(0), mTrackId(0) {
  12. /* empty */
  13. }
  14. //________________
  15. StFemtoXi::StFemtoXi(const StFemtoXi &xi) :
  16. TObject(), mV0Id( xi.mV0Id ), mTrackId( xi.mTrackId ) {
  17. /* empty */
  18. }
  19. //________________
  20. void StFemtoXi::print() {
  21. std::cout << "Xi daughters. V0: " << mV0Id << " Track: " << mTrackId
  22. << std::endl;
  23. }