Changes between Version 19 and Version 20 of MA5LongLivedParticle


Ignore:
Timestamp:
Nov 6, 2017, 5:28:33 PM (7 years ago)
Author:
Eric CONTE
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MA5LongLivedParticle

    v19 v20  
    2727
    2828for leptons:
    29 * D0: impact parameter in tranverse plane wrt the closest approach point
    30 * Z: Z-coordinate of the closest approach point
    31 
     29* D0: impact parameter in the tranverse plane wrt the closest approach point
     30* DZ: impact parameter in the longitudinal plane wrt the closest approach point
     31* Xd, Yd, Zd: coordinates of the closest approach point
     32* Tp, Xp, Yp, Zp: coordinates of the vertex where the lepton is coming from (MC Truth)
    3233
    3334=== New modules in Delphes: ===
     
    4445=== Changes in the MA5 dataformat: ===
    4546D0:
    46 event.mc()->muons()[i].D0();
    47 event.mc()->electrons()[i].D0();
     47event.mc()->muons()[i].d0();
     48event.mc()->electrons()[i].d0();
     49
     50DZ:
     51event.mc()->muons()[i].dz();
     52event.mc()->electrons()[i].dz();
     53
     54Closest approach point:
     55event.mc()->muons()[i].closestPoint().X()
     56event.mc()->muons()[i].closestPoint().Y()
     57event.mc()->muons()[i].closestPoint().Z()
     58
     59Displaced vertex:
     60event.mc()->muons()[i].vertexProd().X()
     61event.mc()->muons()[i].vertexProd().Y()
     62event.mc()->muons()[i].vertexProd().Z()
    4863
    4964== Recast experimental analyses ==