Fork me on GitHub

Changeset 4689481 in git for modules


Ignore:
Timestamp:
May 25, 2018, 8:28:31 PM (6 years ago)
Author:
Michele Selvaggi <michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
f37555a
Parents:
c3547ed (diff), fbad4c7 (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.
Message:

Merge branch 'photonId'

Location:
modules
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • modules/ModulesLinkDef.h

    rc3547ed r4689481  
    5757#include "modules/TaggingParticlesSkimmer.h"
    5858#include "modules/PileUpJetID.h"
     59#include "modules/PhotonID.h"
    5960#include "modules/ConstituentFilter.h"
    6061#include "modules/StatusPidFilter.h"
     
    109110#pragma link C++ class TaggingParticlesSkimmer+;
    110111#pragma link C++ class PileUpJetID+;
     112#pragma link C++ class PhotonID+;
    111113#pragma link C++ class ConstituentFilter+;
    112114#pragma link C++ class StatusPidFilter+;
  • modules/TreeWriter.cc

    rc3547ed r4689481  
    463463    const TLorentzVector &position = candidate->Position;
    464464
    465 
    466465    pt = momentum.Pt();
    467466    cosTheta = TMath::Abs(momentum.CosTheta());
     
    476475    entry->PT = pt;
    477476    entry->E = momentum.E();
    478 
    479477    entry->T = position.T()*1.0E-3/c_light;
    480478
     
    489487
    490488    entry->EhadOverEem = candidate->Eem > 0.0 ? candidate->Ehad/candidate->Eem : 999.9;
     489
     490    // 1: prompt -- 2: non prompt -- 3: fake
     491    entry->Status = candidate->Status;
    491492
    492493    FillParticles(candidate, &entry->Particles);
Note: See TracChangeset for help on using the changeset viewer.