Fork me on GitHub

Changeset 1367 in svn for trunk/classes


Ignore:
Timestamp:
Apr 16, 2014, 4:08:33 PM (10 years ago)
Author:
Michele Selvaggi
Message:

track counting btagging

Location:
trunk/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/DelphesClasses.cc

    r1361 r1367  
    111111  Momentum(0.0, 0.0, 0.0, 0.0),
    112112  Position(0.0, 0.0, 0.0, 0.0),
     113  Dxy(0),SDxy(0),Xd(0),Yd(0),Zd(0),
    113114  Area(0.0, 0.0, 0.0, 0.0),
    114115  NCharged(0),
     
    216217  object.Momentum = Momentum;
    217218  object.Position = Position;
     219  object.Dxy = Dxy;
     220  object.SDxy = SDxy;
     221  object.Xd = Xd;
     222  object.Yd = Yd;
     223  object.Zd = Zd;
    218224  object.Area = Area;
    219225
     
    270276  Position.SetXYZT(0.0, 0.0, 0.0, 0.0);
    271277  Area.SetXYZT(0.0, 0.0, 0.0, 0.0);
    272 
     278  Dxy = 0.0;
     279  SDxy = 0.0;
     280  Xd = 0.0;
     281  Yd = 0.0;
     282  Zd = 0.0;
    273283  NCharged = 0;
    274284  NNeutrals = 0;
  • trunk/classes/DelphesClasses.h

    r1366 r1367  
    349349  Float_t ZOuter; // track position (z component) at the tracker edge
    350350  Float_t TOuter; // track position (z component) at the tracker edge
     351 
     352  Float_t Dxy;     // track signed transverse impact parameter
     353  Float_t SDxy;    // signed error on the track signed transverse impact parameter
     354  Float_t Xd;      // X coordinate of point of closest approach to vertex
     355  Float_t Yd;      // Y coordinate of point of closest approach to vertex
     356  Float_t Zd;      // Z coordinate of point of closest approach to vertex
    351357
    352358  TRef Particle; // reference to generated particle
     
    444450
    445451  TLorentzVector Momentum, Position, Area;
     452 
     453  Float_t  Dxy;   
     454  Float_t  SDxy;   
     455  Float_t  Xd;     
     456  Float_t  Yd;     
     457  Float_t  Zd;     
    446458
    447459  // PileUpJetID variables
Note: See TracChangeset for help on using the changeset viewer.