Fork me on GitHub

Changeset 84a097e in git for classes


Ignore:
Timestamp:
Dec 2, 2019, 6:55:22 PM (5 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
Timing
Children:
2ad823e, 6fc566b
Parents:
c614dd7
Message:

first iteration of adding timing in Delphes

Location:
classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    rc614dd7 r84a097e  
    147147  CtgTheta(0), ErrorCtgTheta(0),
    148148  Phi(0), ErrorPhi(0),
    149   Xd(0), Yd(0), Zd(0),
     149  Xd(0), Yd(0), Zd(0), Td(0),
     150  VertexingWeight(0),
    150151  TrackResolution(0),
    151152  NCharged(0),
     
    318319  object.Phi = Phi;
    319320  object.ErrorPhi = ErrorPhi;
     321  object.Td = Td;
    320322  object.Xd = Xd;
    321323  object.Yd = Yd;
    322324  object.Zd = Zd;
     325  object.VertexingWeight = Zd;
    323326  object.TrackResolution = TrackResolution;
    324327  object.NCharged = NCharged;
     
    447450  Phi = 0.0;
    448451  ErrorPhi = 0.0;
     452  Td = 0.0;
    449453  Xd = 0.0;
    450454  Yd = 0.0;
    451455  Zd = 0.0;
     456  VertexingWeight = 0.0;
    452457  TrackResolution = 0.0;
    453458  NCharged = 0;
  • classes/DelphesClasses.h

    rc614dd7 r84a097e  
    456456  Float_t ZOuter; // track position (z component) at the tracker edge
    457457
     458  Float_t Td; // T coordinate of point of closest approach to vertex
    458459  Float_t Xd; // X coordinate of point of closest approach to vertex
    459460  Float_t Yd; // Y coordinate of point of closest approach to vertex
    460461  Float_t Zd; // Z coordinate of point of closest approach to vertex
     462
     463  Float_t TOFreco; // reconstructed time of flight
     464  Float_t TOFgen; // gen time of flight
    461465
    462466  Float_t L; // track path length
     
    482486  TLorentzVector P4() const;
    483487
    484   ClassDef(Track, 3)
     488  ClassDef(Track, 4)
    485489};
    486490
     
    544548  Float_t ZOuter; // track position (z component) at the tracker edge
    545549
     550  Float_t Td; // X coordinate of point of closest approach to vertex
    546551  Float_t Xd; // X coordinate of point of closest approach to vertex
    547552  Float_t Yd; // Y coordinate of point of closest approach to vertex
     
    664669  Float_t ErrorPhi;
    665670
     671  Float_t Td;
    666672  Float_t Xd;
    667673  Float_t Yd;
    668674  Float_t Zd;
    669675
     676  // Vertexing variables
     677  Float_t VertexingWeight;
     678
    670679  // tracking resolution
    671 
    672680  Float_t TrackResolution;
    673681
Note: See TracChangeset for help on using the changeset viewer.