Fork me on GitHub

Changeset 3a105e5 in git for classes


Ignore:
Timestamp:
Feb 24, 2022, 4:15:47 PM (3 years ago)
Author:
michele <michele.selvaggi@…>
Branches:
master
Children:
2a2f310
Parents:
56fb0be
Message:

added first hit to track

Location:
classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    r56fb0be r3a105e5  
    230230  Phi(0), ErrorPhi(0),
    231231  Xd(0), Yd(0), Zd(0),
     232  XFirstHit(0), YFirstHit(0), ZFirstHit(0),
    232233  Nclusters(0.0),
    233234  dNdx(0.0),
     
    409410  object.Yd = Yd;
    410411  object.Zd = Zd;
     412  object.XFirstHit = XFirstHit;
     413  object.YFirstHit = YFirstHit;
     414  object.ZFirstHit = ZFirstHit;
    411415  object.Nclusters = Nclusters;
    412416  object.dNdx = dNdx;
     
    544548  Yd = 0.0;
    545549  Zd = 0.0;
     550  XFirstHit = 0.0;
     551  YFirstHit = 0.0;
     552  ZFirstHit = 0.0;
    546553  Nclusters = 0.0;
    547554  dNdx = 0.0;
  • classes/DelphesClasses.h

    r56fb0be r3a105e5  
    458458  Float_t Zd; // Z coordinate of point of closest approach to vertex
    459459
     460  Float_t XFirstHit; // X coordinate of point of closest approach to vertex
     461  Float_t YFirstHit; // Y coordinate of point of closest approach to vertex
     462  Float_t ZFirstHit; // Z coordinate of point of closest approach to vertex
     463
    460464  Float_t L; // track path length
    461465  Float_t D0; // track transverse impact parameter
     
    564568  Float_t Yd; // Y coordinate of point of closest approach to vertex
    565569  Float_t Zd; // Z coordinate of point of closest approach to vertex
     570
     571  Float_t XFirstHit; // X coordinate of point of closest approach to vertex
     572  Float_t YFirstHit; // Y coordinate of point of closest approach to vertex
     573  Float_t ZFirstHit; // Z coordinate of point of closest approach to vertex
    566574
    567575  Float_t L; // track path length
     
    708716  Float_t Zd;
    709717
     718  Float_t XFirstHit;
     719  Float_t YFirstHit;
     720  Float_t ZFirstHit;
     721
    710722  // tracking resolution
    711723
Note: See TracChangeset for help on using the changeset viewer.