Fork me on GitHub

Changeset 726e804 in git


Ignore:
Timestamp:
Feb 16, 2021, 4:55:07 PM (4 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
master
Children:
17cd992
Parents:
0852ba95
Message:

removed track parameters from Particle class

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.h

    r0852ba95 r726e804  
    151151  Float_t Eta; // particle pseudorapidity
    152152  Float_t Phi; // particle azimuthal angle
    153 
    154153  Float_t Rapidity; // particle rapidity
    155   Float_t CtgTheta; // particle cotangent of theta
    156 
    157   Float_t D0; // particle transverse impact parameter
    158   Float_t DZ; // particle longitudinal impact parameter
    159154
    160155  Float_t T; // particle vertex position (t component) | hepevt.vhep[number][3]
  • modules/TreeWriter.cc

    r0852ba95 r726e804  
    215215    entry->Pz = momentum.Pz();
    216216
    217     entry->D0 = candidate->D0;
    218     entry->DZ = candidate->DZ;
    219     entry->P = candidate->P;
    220     entry->PT = candidate->PT;
    221     entry->CtgTheta = candidate->CtgTheta;
    222     entry->Phi = candidate->Phi;
    223 
    224217    entry->Eta = eta;
    225218    entry->Phi = momentum.Phi();
     
    524517    entry->ErrorDZCtgTheta     = candidate->TrackCovariance(3,4);
    525518
    526     cout<<entry->ErrorPhiC<<endl;
    527 
    528519    entry->Xd = candidate->Xd;
    529520    entry->Yd = candidate->Yd;
Note: See TracChangeset for help on using the changeset viewer.