Newer
Older
TB_Chris / TbEvent / src / .svn / text-base / TbCluster.cpp.svn-base
@iaro iaro on 9 May 2016 518 bytes first attempt of automated anal
  1. #include "Event/TbCluster.h"
  2.  
  3. using namespace LHCb;
  4.  
  5. //=============================================================================
  6. // Clone method
  7. //=============================================================================
  8. TbCluster *TbCluster::clone() {
  9. TbCluster *c = new TbCluster();
  10. c->setX(x());
  11. c->setY(y());
  12. c->setZ(z());
  13. c->setXloc(xloc());
  14. c->setYloc(yloc());
  15. c->setCharge(charge());
  16. c->setPlane(plane());
  17. c->setTime(time());
  18. c->setXErr(xErr());
  19. c->setYErr(yErr());
  20. return c;
  21. }
  22.