Changes in classes/DelphesClasses.cc [341014c:84a097e] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r341014c r84a097e 39 39 CompBase *Track::fgCompare = CompPT<Track>::Instance(); 40 40 CompBase *Tower::fgCompare = CompE<Tower>::Instance(); 41 CompBase *ParticleFlowCandidate::fgCompare = CompE<ParticleFlowCandidate>::Instance(); 41 42 CompBase *HectorHit::fgCompare = CompE<HectorHit>::Instance(); 42 43 CompBase *Vertex::fgCompare = CompSumPT2<Vertex>::Instance(); … … 112 113 TLorentzVector vec; 113 114 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); 114 124 return vec; 115 125 } … … 121 131 Charge(0), Mass(0.0), 122 132 IsPU(0), IsRecoPU(0), IsConstituent(0), IsFromConversion(0), 123 ClusterIndex(-1), ClusterNDF(0), ClusterSigma(0), SumPT2(0), BTVSumPT2(0), GenDeltaZ(0), GenSumPT2(0),124 133 Flavor(0), FlavorAlgo(0), FlavorPhys(0), 125 134 BTag(0), BTagAlgo(0), BTagPhys(0), … … 128 137 Momentum(0.0, 0.0, 0.0, 0.0), 129 138 Position(0.0, 0.0, 0.0, 0.0), 139 InitialPosition(0.0, 0.0, 0.0, 0.0), 130 140 PositionError(0.0, 0.0, 0.0, 0.0), 131 InitialPosition(0.0, 0.0, 0.0, 0.0),132 141 Area(0.0, 0.0, 0.0, 0.0), 133 142 L(0), … … 138 147 CtgTheta(0), ErrorCtgTheta(0), 139 148 Phi(0), ErrorPhi(0), 140 Xd(0), Yd(0), Zd(0), 149 Xd(0), Yd(0), Zd(0), Td(0), 150 VertexingWeight(0), 141 151 TrackResolution(0), 142 152 NCharged(0), 143 153 NNeutrals(0), 154 NeutralEnergyFraction(0), // charged energy fraction 155 ChargedEnergyFraction(0), // neutral energy fraction 144 156 Beta(0), 145 157 BetaStar(0), … … 153 165 SumPtChargedPU(-999), 154 166 SumPt(-999), 167 ClusterIndex(-1), ClusterNDF(0), ClusterSigma(0), SumPT2(0), BTVSumPT2(0), GenDeltaZ(0), GenSumPT2(0), 155 168 NSubJetsTrimmed(0), 156 169 NSubJetsPruned(0), … … 306 319 object.Phi = Phi; 307 320 object.ErrorPhi = ErrorPhi; 321 object.Td = Td; 308 322 object.Xd = Xd; 309 323 object.Yd = Yd; 310 324 object.Zd = Zd; 325 object.VertexingWeight = Zd; 311 326 object.TrackResolution = TrackResolution; 312 327 object.NCharged = NCharged; 313 328 object.NNeutrals = NNeutrals; 329 object.NeutralEnergyFraction = NeutralEnergyFraction; 330 object.ChargedEnergyFraction = ChargedEnergyFraction; 314 331 object.Beta = Beta; 315 332 object.BetaStar = BetaStar; … … 433 450 Phi = 0.0; 434 451 ErrorPhi = 0.0; 452 Td = 0.0; 435 453 Xd = 0.0; 436 454 Yd = 0.0; 437 455 Zd = 0.0; 456 VertexingWeight = 0.0; 438 457 TrackResolution = 0.0; 439 458 NCharged = 0;
Note:
See TracChangeset
for help on using the changeset viewer.