Fork me on GitHub

Changeset 17cd992 in git


Ignore:
Timestamp:
Feb 18, 2021, 4:09:47 PM (3 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
master
Children:
601a13b
Parents:
726e804
Message:

added track curvature inverse to Track and PFcandidate ouput

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.h

    r726e804 r17cd992  
    438438  Float_t Phi; // track azimuthal angle
    439439  Float_t CtgTheta; // track cotangent of theta
     440  Float_t C; // track curvature inverse
    440441
    441442  Float_t EtaOuter; // track pseudorapidity at the tracker edge
     
    540541  Float_t Phi; // track azimuthal angle
    541542  Float_t CtgTheta; // track cotangent of theta
     543  Float_t C; // track curvature inverse
    542544
    543545  Float_t EtaOuter; // track pseudorapidity at the tracker edge
  • modules/TreeWriter.cc

    r726e804 r17cd992  
    386386    entry->Phi = phi;
    387387    entry->CtgTheta = ctgTheta;
     388    entry->C = candidate->C;
    388389
    389390    particle = static_cast<Candidate *>(candidate->GetCandidates()->At(0));
     
    535536    entry->Phi = phi;
    536537    entry->CtgTheta = ctgTheta;
    537 
     538    entry->C = candidate->C;
     539   
    538540    particle = static_cast<Candidate *>(candidate->GetCandidates()->At(0));
    539541    const TLorentzVector &initialPosition = particle->Position;
Note: See TracChangeset for help on using the changeset viewer.