Fork me on GitHub

Changeset 8a11cdc in git for modules


Ignore:
Timestamp:
Feb 12, 2019, 2:59:49 PM (6 years ago)
Author:
GitHub <noreply@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
769f65b
Parents:
70bb4cb (diff), dd64cff (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Pavel Demin <pavel-demin@…> (02/12/19 14:59:49)
git-committer:
GitHub <noreply@…> (02/12/19 14:59:49)
Message:

Merge pull request #68 from delphes/llp

new modules and classes for llp

Location:
modules
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • modules/ModulesLinkDef.h

    r70bb4cb r8a11cdc  
    3232#include "modules/ParticlePropagator.h"
    3333#include "modules/Efficiency.h"
     34#include "modules/TrackEfficiency.h"
    3435#include "modules/IdentificationMap.h"
    3536#include "modules/EnergySmearing.h"
     
    8586#pragma link C++ class ParticlePropagator+;
    8687#pragma link C++ class Efficiency+;
     88#pragma link C++ class TrackEfficiency+;
    8789#pragma link C++ class IdentificationMap+;
    8890#pragma link C++ class EnergySmearing+;
  • modules/TreeWriter.cc

    r70bb4cb r8a11cdc  
    528528    entry->T = position.T()*1.0E-3/c_light;
    529529
     530    // displacement
     531    entry->D0            = candidate->D0;
     532    entry->ErrorD0       = candidate->ErrorD0;
     533    entry->DZ            = candidate->DZ;
     534    entry->ErrorDZ       = candidate->ErrorDZ;
     535
    530536    // Isolation variables
    531 
    532537    entry->IsolationVar = candidate->IsolationVar;
    533538    entry->IsolationVarRhoCorr = candidate->IsolationVarRhoCorr ;
     
    582587
    583588    entry->T = position.T()*1.0E-3/c_light;
     589
     590
     591    // displacement
     592    entry->D0            = candidate->D0;
     593    entry->ErrorD0       = candidate->ErrorD0;
     594    entry->DZ            = candidate->DZ;
     595    entry->ErrorDZ       = candidate->ErrorDZ;
    584596
    585597    // Isolation variables
Note: See TracChangeset for help on using the changeset viewer.