Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.cc

    r84a097e r341014c  
    3939CompBase *Track::fgCompare = CompPT<Track>::Instance();
    4040CompBase *Tower::fgCompare = CompE<Tower>::Instance();
    41 CompBase *ParticleFlowCandidate::fgCompare = CompE<ParticleFlowCandidate>::Instance();
    4241CompBase *HectorHit::fgCompare = CompE<HectorHit>::Instance();
    4342CompBase *Vertex::fgCompare = CompSumPT2<Vertex>::Instance();
     
    113112  TLorentzVector vec;
    114113  vec.SetPtEtaPhiM(ET, Eta, Phi, 0.0);
    115   return vec;
    116 }
    117 
    118 //------------------------------------------------------------------------------
    119 
    120 TLorentzVector ParticleFlowCandidate::P4() const
    121 {
    122   TLorentzVector vec;
    123   vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
    124114  return vec;
    125115}
     
    131121  Charge(0), Mass(0.0),
    132122  IsPU(0), IsRecoPU(0), IsConstituent(0), IsFromConversion(0),
     123  ClusterIndex(-1), ClusterNDF(0), ClusterSigma(0), SumPT2(0), BTVSumPT2(0), GenDeltaZ(0), GenSumPT2(0),
    133124  Flavor(0), FlavorAlgo(0), FlavorPhys(0),
    134125  BTag(0), BTagAlgo(0), BTagPhys(0),
     
    137128  Momentum(0.0, 0.0, 0.0, 0.0),
    138129  Position(0.0, 0.0, 0.0, 0.0),
     130  PositionError(0.0, 0.0, 0.0, 0.0),
    139131  InitialPosition(0.0, 0.0, 0.0, 0.0),
    140   PositionError(0.0, 0.0, 0.0, 0.0),
    141132  Area(0.0, 0.0, 0.0, 0.0),
    142133  L(0),
     
    147138  CtgTheta(0), ErrorCtgTheta(0),
    148139  Phi(0), ErrorPhi(0),
    149   Xd(0), Yd(0), Zd(0), Td(0),
    150   VertexingWeight(0),
     140  Xd(0), Yd(0), Zd(0),
    151141  TrackResolution(0),
    152142  NCharged(0),
    153143  NNeutrals(0),
    154   NeutralEnergyFraction(0),  // charged energy fraction
    155   ChargedEnergyFraction(0),  // neutral energy fraction
    156144  Beta(0),
    157145  BetaStar(0),
     
    165153  SumPtChargedPU(-999),
    166154  SumPt(-999),
    167   ClusterIndex(-1), ClusterNDF(0), ClusterSigma(0), SumPT2(0), BTVSumPT2(0), GenDeltaZ(0), GenSumPT2(0),
    168155  NSubJetsTrimmed(0),
    169156  NSubJetsPruned(0),
     
    319306  object.Phi = Phi;
    320307  object.ErrorPhi = ErrorPhi;
    321   object.Td = Td;
    322308  object.Xd = Xd;
    323309  object.Yd = Yd;
    324310  object.Zd = Zd;
    325   object.VertexingWeight = Zd;
    326311  object.TrackResolution = TrackResolution;
    327312  object.NCharged = NCharged;
    328313  object.NNeutrals = NNeutrals;
    329   object.NeutralEnergyFraction = NeutralEnergyFraction;
    330   object.ChargedEnergyFraction = ChargedEnergyFraction;
    331314  object.Beta = Beta;
    332315  object.BetaStar = BetaStar;
     
    450433  Phi = 0.0;
    451434  ErrorPhi = 0.0;
    452   Td = 0.0;
    453435  Xd = 0.0;
    454436  Yd = 0.0;
    455437  Zd = 0.0;
    456   VertexingWeight = 0.0;
    457438  TrackResolution = 0.0;
    458439  NCharged = 0;
Note: See TracChangeset for help on using the changeset viewer.