[b443089] | 1 | /*
|
---|
| 2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
| 3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 4 | *
|
---|
[b443089] | 5 | * This program is free software: you can redistribute it and/or modify
|
---|
| 6 | * it under the terms of the GNU General Public License as published by
|
---|
| 7 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 8 | * (at your option) any later version.
|
---|
[1fa50c2] | 9 | *
|
---|
[b443089] | 10 | * This program is distributed in the hope that it will be useful,
|
---|
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 13 | * GNU General Public License for more details.
|
---|
[1fa50c2] | 14 | *
|
---|
[b443089] | 15 | * You should have received a copy of the GNU General Public License
|
---|
| 16 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 17 | */
|
---|
| 18 |
|
---|
[d7d2da3] | 19 | /**
|
---|
| 20 | *
|
---|
| 21 | * Definition of classes to be stored in the root tree.
|
---|
| 22 | * Function CompareXYZ sorts objects by the variable XYZ that MUST be
|
---|
| 23 | * present in the data members of the root tree class of the branch.
|
---|
| 24 | *
|
---|
| 25 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 26 | *
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | #include "classes/DelphesClasses.h"
|
---|
| 30 | #include "classes/DelphesFactory.h"
|
---|
| 31 | #include "classes/SortableObject.h"
|
---|
| 32 |
|
---|
| 33 | CompBase *GenParticle::fgCompare = 0;
|
---|
| 34 | CompBase *Photon::fgCompare = CompPT<Photon>::Instance();
|
---|
| 35 | CompBase *Electron::fgCompare = CompPT<Electron>::Instance();
|
---|
| 36 | CompBase *Muon::fgCompare = CompPT<Muon>::Instance();
|
---|
| 37 | CompBase *Jet::fgCompare = CompPT<Jet>::Instance();
|
---|
| 38 | CompBase *Track::fgCompare = CompPT<Track>::Instance();
|
---|
| 39 | CompBase *Tower::fgCompare = CompE<Tower>::Instance();
|
---|
[4d7014e] | 40 | CompBase *ParticleFlowCandidate::fgCompare = CompE<ParticleFlowCandidate>::Instance();
|
---|
[8f7db23] | 41 | CompBase *HectorHit::fgCompare = CompE<HectorHit>::Instance();
|
---|
[3c46e17] | 42 | CompBase *Vertex::fgCompare = CompSumPT2<Vertex>::Instance();
|
---|
[d7d2da3] | 43 | CompBase *Candidate::fgCompare = CompMomentumPt<Candidate>::Instance();
|
---|
| 44 |
|
---|
| 45 | //------------------------------------------------------------------------------
|
---|
| 46 |
|
---|
[2b3ef28] | 47 | TLorentzVector GenParticle::P4() const
|
---|
[d7d2da3] | 48 | {
|
---|
| 49 | TLorentzVector vec;
|
---|
| 50 | vec.SetPxPyPzE(Px, Py, Pz, E);
|
---|
| 51 | return vec;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | //------------------------------------------------------------------------------
|
---|
| 55 |
|
---|
[2b3ef28] | 56 | TLorentzVector MissingET::P4() const
|
---|
[4ad7b96] | 57 | {
|
---|
| 58 | TLorentzVector vec;
|
---|
| 59 | vec.SetPtEtaPhiM(MET, Eta, Phi, 0.0);
|
---|
| 60 | return vec;
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | //------------------------------------------------------------------------------
|
---|
| 64 |
|
---|
[2b3ef28] | 65 | TLorentzVector Photon::P4() const
|
---|
[d7d2da3] | 66 | {
|
---|
| 67 | TLorentzVector vec;
|
---|
| 68 | vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
|
---|
| 69 | return vec;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | //------------------------------------------------------------------------------
|
---|
| 73 |
|
---|
[2b3ef28] | 74 | TLorentzVector Electron::P4() const
|
---|
[d7d2da3] | 75 | {
|
---|
| 76 | TLorentzVector vec;
|
---|
| 77 | vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
|
---|
| 78 | return vec;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | //------------------------------------------------------------------------------
|
---|
| 82 |
|
---|
[2b3ef28] | 83 | TLorentzVector Muon::P4() const
|
---|
[d7d2da3] | 84 | {
|
---|
| 85 | TLorentzVector vec;
|
---|
| 86 | vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
|
---|
| 87 | return vec;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | //------------------------------------------------------------------------------
|
---|
| 91 |
|
---|
[2b3ef28] | 92 | TLorentzVector Jet::P4() const
|
---|
[d7d2da3] | 93 | {
|
---|
| 94 | TLorentzVector vec;
|
---|
| 95 | vec.SetPtEtaPhiM(PT, Eta, Phi, Mass);
|
---|
| 96 | return vec;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | //------------------------------------------------------------------------------
|
---|
| 100 |
|
---|
[2b3ef28] | 101 | TLorentzVector Track::P4() const
|
---|
[d7d2da3] | 102 | {
|
---|
| 103 | TLorentzVector vec;
|
---|
| 104 | vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
|
---|
| 105 | return vec;
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | //------------------------------------------------------------------------------
|
---|
| 109 |
|
---|
[2b3ef28] | 110 | TLorentzVector Tower::P4() const
|
---|
[d7d2da3] | 111 | {
|
---|
| 112 | TLorentzVector vec;
|
---|
| 113 | vec.SetPtEtaPhiM(ET, Eta, Phi, 0.0);
|
---|
| 114 | return vec;
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | //------------------------------------------------------------------------------
|
---|
| 118 |
|
---|
[4d7014e] | 119 | TLorentzVector ParticleFlowCandidate::P4() const
|
---|
| 120 | {
|
---|
| 121 | TLorentzVector vec;
|
---|
| 122 | vec.SetPtEtaPhiM(PT, Eta, Phi, 0.0);
|
---|
| 123 | return vec;
|
---|
| 124 | }
|
---|
| 125 |
|
---|
| 126 | //------------------------------------------------------------------------------
|
---|
| 127 |
|
---|
[d7d2da3] | 128 | Candidate::Candidate() :
|
---|
| 129 | PID(0), Status(0), M1(-1), M2(-1), D1(-1), D2(-1),
|
---|
| 130 | Charge(0), Mass(0.0),
|
---|
[5d2481f] | 131 | IsPU(0), IsRecoPU(0), IsConstituent(0), IsFromConversion(0),
|
---|
[fe0273c] | 132 | Flavor(0), FlavorAlgo(0), FlavorPhys(0),
|
---|
| 133 | BTag(0), BTagAlgo(0), BTagPhys(0),
|
---|
[7429c6a] | 134 | TauTag(0), TauWeight(0.0), Eem(0.0), Ehad(0.0),
|
---|
[d7d2da3] | 135 | DeltaEta(0.0), DeltaPhi(0.0),
|
---|
| 136 | Momentum(0.0, 0.0, 0.0, 0.0),
|
---|
| 137 | Position(0.0, 0.0, 0.0, 0.0),
|
---|
[2118a6a] | 138 | InitialPosition(0.0, 0.0, 0.0, 0.0),
|
---|
[1a4956e] | 139 | PositionError(0.0, 0.0, 0.0, 0.0),
|
---|
[d7d2da3] | 140 | Area(0.0, 0.0, 0.0, 0.0),
|
---|
[3051ea17] | 141 | TrackCovariance(5),
|
---|
[80306e6] | 142 | L(0),
|
---|
[341014c] | 143 | D0(0), ErrorD0(0),
|
---|
| 144 | DZ(0), ErrorDZ(0),
|
---|
| 145 | P(0), ErrorP(0),
|
---|
[3051ea17] | 146 | C(0), ErrorC(0),
|
---|
[341014c] | 147 | PT(0), ErrorPT(0),
|
---|
| 148 | CtgTheta(0), ErrorCtgTheta(0),
|
---|
| 149 | Phi(0), ErrorPhi(0),
|
---|
| 150 | Xd(0), Yd(0), Zd(0),
|
---|
[a98c7ef] | 151 | TrackResolution(0),
|
---|
[24d005f] | 152 | NCharged(0),
|
---|
| 153 | NNeutrals(0),
|
---|
[c614dd7] | 154 | NeutralEnergyFraction(0), // charged energy fraction
|
---|
| 155 | ChargedEnergyFraction(0), // neutral energy fraction
|
---|
[24d005f] | 156 | Beta(0),
|
---|
| 157 | BetaStar(0),
|
---|
| 158 | MeanSqDeltaR(0),
|
---|
[da00c35] | 159 | PTD(0),
|
---|
[839deb7] | 160 | NTimeHits(-1),
|
---|
[b62c2da] | 161 | IsolationVar(-999),
|
---|
| 162 | IsolationVarRhoCorr(-999),
|
---|
| 163 | SumPtCharged(-999),
|
---|
| 164 | SumPtNeutral(-999),
|
---|
| 165 | SumPtChargedPU(-999),
|
---|
| 166 | SumPt(-999),
|
---|
[1a4956e] | 167 | ClusterIndex(-1), ClusterNDF(0), ClusterSigma(0), SumPT2(0), BTVSumPT2(0), GenDeltaZ(0), GenSumPT2(0),
|
---|
[839deb7] | 168 | NSubJetsTrimmed(0),
|
---|
| 169 | NSubJetsPruned(0),
|
---|
| 170 | NSubJetsSoftDropped(0),
|
---|
[e9c0d73] | 171 | ExclYmerge23(0),
|
---|
| 172 | ExclYmerge34(0),
|
---|
| 173 | ExclYmerge45(0),
|
---|
| 174 | ExclYmerge56(0),
|
---|
[7e83689] | 175 | ParticleDensity(0),
|
---|
[da00c35] | 176 | fFactory(0),
|
---|
| 177 | fArray(0)
|
---|
[d7d2da3] | 178 | {
|
---|
[8d200a6] | 179 | int i;
|
---|
[d7d2da3] | 180 | Edges[0] = 0.0;
|
---|
| 181 | Edges[1] = 0.0;
|
---|
| 182 | Edges[2] = 0.0;
|
---|
| 183 | Edges[3] = 0.0;
|
---|
[24d005f] | 184 | FracPt[0] = 0.0;
|
---|
| 185 | FracPt[1] = 0.0;
|
---|
| 186 | FracPt[2] = 0.0;
|
---|
| 187 | FracPt[3] = 0.0;
|
---|
| 188 | FracPt[4] = 0.0;
|
---|
[63178fb] | 189 | Tau[0] = 0.0;
|
---|
| 190 | Tau[1] = 0.0;
|
---|
| 191 | Tau[2] = 0.0;
|
---|
| 192 | Tau[3] = 0.0;
|
---|
| 193 | Tau[4] = 0.0;
|
---|
[ba75867] | 194 |
|
---|
| 195 | SoftDroppedJet.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 196 | SoftDroppedSubJet1.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 197 | SoftDroppedSubJet2.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 198 |
|
---|
[8d200a6] | 199 | for(i = 0; i < 5; ++i)
|
---|
| 200 | {
|
---|
| 201 | TrimmedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 202 | PrunedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 203 | SoftDroppedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 204 | }
|
---|
[d7d2da3] | 205 | }
|
---|
| 206 |
|
---|
| 207 | //------------------------------------------------------------------------------
|
---|
| 208 |
|
---|
| 209 | void Candidate::AddCandidate(Candidate *object)
|
---|
| 210 | {
|
---|
| 211 | if(!fArray) fArray = fFactory->NewArray();
|
---|
| 212 | fArray->Add(object);
|
---|
| 213 | }
|
---|
| 214 |
|
---|
| 215 | //------------------------------------------------------------------------------
|
---|
| 216 |
|
---|
| 217 | TObjArray *Candidate::GetCandidates()
|
---|
| 218 | {
|
---|
| 219 | if(!fArray) fArray = fFactory->NewArray();
|
---|
| 220 | return fArray;
|
---|
| 221 | }
|
---|
| 222 |
|
---|
| 223 | //------------------------------------------------------------------------------
|
---|
| 224 |
|
---|
| 225 | Bool_t Candidate::Overlaps(const Candidate *object) const
|
---|
| 226 | {
|
---|
| 227 | const Candidate *candidate;
|
---|
| 228 |
|
---|
| 229 | if(object->GetUniqueID() == GetUniqueID()) return kTRUE;
|
---|
| 230 |
|
---|
| 231 | if(fArray)
|
---|
| 232 | {
|
---|
| 233 | TIter it(fArray);
|
---|
| 234 | while((candidate = static_cast<Candidate *>(it.Next())))
|
---|
| 235 | {
|
---|
| 236 | if(candidate->Overlaps(object)) return kTRUE;
|
---|
| 237 | }
|
---|
| 238 | }
|
---|
| 239 |
|
---|
| 240 | if(object->fArray)
|
---|
| 241 | {
|
---|
| 242 | TIter it(object->fArray);
|
---|
| 243 | while((candidate = static_cast<Candidate *>(it.Next())))
|
---|
| 244 | {
|
---|
| 245 | if(candidate->Overlaps(this)) return kTRUE;
|
---|
| 246 | }
|
---|
| 247 | }
|
---|
| 248 |
|
---|
| 249 | return kFALSE;
|
---|
| 250 | }
|
---|
| 251 |
|
---|
| 252 | //------------------------------------------------------------------------------
|
---|
| 253 |
|
---|
| 254 | TObject *Candidate::Clone(const char *newname) const
|
---|
| 255 | {
|
---|
| 256 | Candidate *object = fFactory->NewCandidate();
|
---|
| 257 | Copy(*object);
|
---|
| 258 | return object;
|
---|
| 259 | }
|
---|
| 260 |
|
---|
| 261 | //------------------------------------------------------------------------------
|
---|
| 262 |
|
---|
| 263 | void Candidate::Copy(TObject &obj) const
|
---|
| 264 | {
|
---|
| 265 | Candidate &object = static_cast<Candidate &>(obj);
|
---|
| 266 | Candidate *candidate;
|
---|
| 267 |
|
---|
| 268 | object.PID = PID;
|
---|
| 269 | object.Status = Status;
|
---|
| 270 | object.M1 = M1;
|
---|
| 271 | object.M2 = M2;
|
---|
| 272 | object.D1 = D1;
|
---|
| 273 | object.D2 = D2;
|
---|
| 274 | object.Charge = Charge;
|
---|
| 275 | object.Mass = Mass;
|
---|
| 276 | object.IsPU = IsPU;
|
---|
[84733ae] | 277 | object.IsRecoPU = IsRecoPU;
|
---|
[d7d2da3] | 278 | object.IsConstituent = IsConstituent;
|
---|
[5d2481f] | 279 | object.IsFromConversion = IsFromConversion;
|
---|
[2118a6a] | 280 | object.ClusterIndex = ClusterIndex;
|
---|
| 281 | object.ClusterNDF = ClusterNDF;
|
---|
| 282 | object.ClusterSigma = ClusterSigma;
|
---|
| 283 | object.SumPT2 = SumPT2;
|
---|
| 284 | object.BTVSumPT2 = BTVSumPT2;
|
---|
| 285 | object.GenDeltaZ = GenDeltaZ;
|
---|
| 286 | object.GenSumPT2 = GenSumPT2;
|
---|
[fe0273c] | 287 | object.Flavor = Flavor;
|
---|
| 288 | object.FlavorAlgo = FlavorAlgo;
|
---|
| 289 | object.FlavorPhys = FlavorPhys;
|
---|
[d7d2da3] | 290 | object.BTag = BTag;
|
---|
[edf10ba] | 291 | object.BTagAlgo = BTagAlgo;
|
---|
[fe0273c] | 292 | object.BTagPhys = BTagPhys;
|
---|
[d7d2da3] | 293 | object.TauTag = TauTag;
|
---|
[7429c6a] | 294 | object.TauWeight = TauWeight;
|
---|
[d7d2da3] | 295 | object.Eem = Eem;
|
---|
| 296 | object.Ehad = Ehad;
|
---|
| 297 | object.Edges[0] = Edges[0];
|
---|
| 298 | object.Edges[1] = Edges[1];
|
---|
| 299 | object.Edges[2] = Edges[2];
|
---|
| 300 | object.Edges[3] = Edges[3];
|
---|
| 301 | object.DeltaEta = DeltaEta;
|
---|
| 302 | object.DeltaPhi = DeltaPhi;
|
---|
| 303 | object.Momentum = Momentum;
|
---|
| 304 | object.Position = Position;
|
---|
[2118a6a] | 305 | object.InitialPosition = InitialPosition;
|
---|
| 306 | object.PositionError = PositionError;
|
---|
[43c646a] | 307 | object.Area = Area;
|
---|
[80306e6] | 308 | object.L = L;
|
---|
[28c722a] | 309 | object.ErrorT = ErrorT;
|
---|
[80306e6] | 310 | object.D0 = D0;
|
---|
| 311 | object.ErrorD0 = ErrorD0;
|
---|
| 312 | object.DZ = DZ;
|
---|
| 313 | object.ErrorDZ = ErrorDZ;
|
---|
| 314 | object.P = P;
|
---|
| 315 | object.ErrorP = ErrorP;
|
---|
[3051ea17] | 316 | object.C = C;
|
---|
| 317 | object.ErrorC = ErrorC;
|
---|
[80306e6] | 318 | object.PT = PT;
|
---|
| 319 | object.ErrorPT = ErrorPT;
|
---|
[341014c] | 320 | object.CtgTheta = CtgTheta;
|
---|
[80306e6] | 321 | object.ErrorCtgTheta = ErrorCtgTheta;
|
---|
| 322 | object.Phi = Phi;
|
---|
[341014c] | 323 | object.ErrorPhi = ErrorPhi;
|
---|
[a0431dc] | 324 | object.Xd = Xd;
|
---|
| 325 | object.Yd = Yd;
|
---|
| 326 | object.Zd = Zd;
|
---|
[a98c7ef] | 327 | object.TrackResolution = TrackResolution;
|
---|
[24d005f] | 328 | object.NCharged = NCharged;
|
---|
| 329 | object.NNeutrals = NNeutrals;
|
---|
[c614dd7] | 330 | object.NeutralEnergyFraction = NeutralEnergyFraction;
|
---|
| 331 | object.ChargedEnergyFraction = ChargedEnergyFraction;
|
---|
[24d005f] | 332 | object.Beta = Beta;
|
---|
| 333 | object.BetaStar = BetaStar;
|
---|
| 334 | object.MeanSqDeltaR = MeanSqDeltaR;
|
---|
| 335 | object.PTD = PTD;
|
---|
[839deb7] | 336 | object.NTimeHits = NTimeHits;
|
---|
[b62c2da] | 337 | object.IsolationVar = IsolationVar;
|
---|
| 338 | object.IsolationVarRhoCorr = IsolationVarRhoCorr;
|
---|
| 339 | object.SumPtCharged = SumPtCharged;
|
---|
| 340 | object.SumPtNeutral = SumPtNeutral;
|
---|
| 341 | object.SumPtChargedPU = SumPtChargedPU;
|
---|
| 342 | object.SumPt = SumPt;
|
---|
[ab3bdd9] | 343 | object.ClusterIndex = ClusterIndex;
|
---|
| 344 | object.ClusterNDF = ClusterNDF;
|
---|
[341014c] | 345 | object.ClusterSigma = ClusterSigma;
|
---|
[ab3bdd9] | 346 | object.SumPT2 = SumPT2;
|
---|
[341014c] | 347 |
|
---|
[24d005f] | 348 | object.FracPt[0] = FracPt[0];
|
---|
| 349 | object.FracPt[1] = FracPt[1];
|
---|
| 350 | object.FracPt[2] = FracPt[2];
|
---|
| 351 | object.FracPt[3] = FracPt[3];
|
---|
| 352 | object.FracPt[4] = FracPt[4];
|
---|
[63178fb] | 353 | object.Tau[0] = Tau[0];
|
---|
| 354 | object.Tau[1] = Tau[1];
|
---|
| 355 | object.Tau[2] = Tau[2];
|
---|
| 356 | object.Tau[3] = Tau[3];
|
---|
| 357 | object.Tau[4] = Tau[4];
|
---|
[839deb7] | 358 |
|
---|
[de6d698] | 359 | object.TrimmedP4[0] = TrimmedP4[0];
|
---|
| 360 | object.TrimmedP4[1] = TrimmedP4[1];
|
---|
| 361 | object.TrimmedP4[2] = TrimmedP4[2];
|
---|
| 362 | object.TrimmedP4[3] = TrimmedP4[3];
|
---|
| 363 | object.TrimmedP4[4] = TrimmedP4[4];
|
---|
| 364 | object.PrunedP4[0] = PrunedP4[0];
|
---|
| 365 | object.PrunedP4[1] = PrunedP4[1];
|
---|
| 366 | object.PrunedP4[2] = PrunedP4[2];
|
---|
| 367 | object.PrunedP4[3] = PrunedP4[3];
|
---|
| 368 | object.PrunedP4[4] = PrunedP4[4];
|
---|
| 369 | object.SoftDroppedP4[0] = SoftDroppedP4[0];
|
---|
| 370 | object.SoftDroppedP4[1] = SoftDroppedP4[1];
|
---|
| 371 | object.SoftDroppedP4[2] = SoftDroppedP4[2];
|
---|
| 372 | object.SoftDroppedP4[3] = SoftDroppedP4[3];
|
---|
| 373 | object.SoftDroppedP4[4] = SoftDroppedP4[4];
|
---|
| 374 |
|
---|
[edf10ba] | 375 | object.NSubJetsTrimmed = NSubJetsTrimmed;
|
---|
| 376 | object.NSubJetsPruned = NSubJetsPruned;
|
---|
[de6d698] | 377 | object.NSubJetsSoftDropped = NSubJetsSoftDropped;
|
---|
[e4c3fef] | 378 |
|
---|
[341014c] | 379 | object.SoftDroppedJet = SoftDroppedJet;
|
---|
[ba75867] | 380 | object.SoftDroppedSubJet1 = SoftDroppedSubJet1;
|
---|
| 381 | object.SoftDroppedSubJet2 = SoftDroppedSubJet2;
|
---|
[3051ea17] | 382 | object.TrackCovariance = TrackCovariance;
|
---|
[d7d2da3] | 383 | object.fFactory = fFactory;
|
---|
| 384 | object.fArray = 0;
|
---|
| 385 |
|
---|
[839deb7] | 386 | // copy cluster timing info
|
---|
| 387 | copy(ECalEnergyTimePairs.begin(), ECalEnergyTimePairs.end(), back_inserter(object.ECalEnergyTimePairs));
|
---|
[3db5282] | 388 |
|
---|
[d7d2da3] | 389 | if(fArray && fArray->GetEntriesFast() > 0)
|
---|
| 390 | {
|
---|
| 391 | TIter itArray(fArray);
|
---|
| 392 | TObjArray *array = object.GetCandidates();
|
---|
| 393 | while((candidate = static_cast<Candidate *>(itArray.Next())))
|
---|
| 394 | {
|
---|
| 395 | array->Add(candidate);
|
---|
| 396 | }
|
---|
| 397 | }
|
---|
| 398 | }
|
---|
| 399 |
|
---|
| 400 | //------------------------------------------------------------------------------
|
---|
| 401 |
|
---|
[341014c] | 402 | void Candidate::Clear(Option_t *option)
|
---|
[d7d2da3] | 403 | {
|
---|
[8d200a6] | 404 | int i;
|
---|
[d7d2da3] | 405 | SetUniqueID(0);
|
---|
| 406 | ResetBit(kIsReferenced);
|
---|
| 407 | PID = 0;
|
---|
| 408 | Status = 0;
|
---|
[341014c] | 409 | M1 = -1;
|
---|
| 410 | M2 = -1;
|
---|
| 411 | D1 = -1;
|
---|
| 412 | D2 = -1;
|
---|
[d7d2da3] | 413 | Charge = 0;
|
---|
| 414 | Mass = 0.0;
|
---|
| 415 | IsPU = 0;
|
---|
[d759c46] | 416 | IsRecoPU = 0;
|
---|
[d7d2da3] | 417 | IsConstituent = 0;
|
---|
[5d2481f] | 418 | IsFromConversion = 0;
|
---|
[fe0273c] | 419 | Flavor = 0;
|
---|
| 420 | FlavorAlgo = 0;
|
---|
| 421 | FlavorPhys = 0;
|
---|
[d7d2da3] | 422 | BTag = 0;
|
---|
[edf10ba] | 423 | BTagAlgo = 0;
|
---|
[fe0273c] | 424 | BTagPhys = 0;
|
---|
[d7d2da3] | 425 | TauTag = 0;
|
---|
[7429c6a] | 426 | TauWeight = 0.0;
|
---|
[d7d2da3] | 427 | Eem = 0.0;
|
---|
| 428 | Ehad = 0.0;
|
---|
| 429 | Edges[0] = 0.0;
|
---|
| 430 | Edges[1] = 0.0;
|
---|
| 431 | Edges[2] = 0.0;
|
---|
| 432 | Edges[3] = 0.0;
|
---|
| 433 | DeltaEta = 0.0;
|
---|
| 434 | DeltaPhi = 0.0;
|
---|
| 435 | Momentum.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 436 | Position.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
[80306e6] | 437 | InitialPosition.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
[d7d2da3] | 438 | Area.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
[3051ea17] | 439 | TrackCovariance.Zero();
|
---|
[80306e6] | 440 | L = 0.0;
|
---|
[28c722a] | 441 | ErrorT = 0.0;
|
---|
[341014c] | 442 | D0 = 0.0;
|
---|
[80306e6] | 443 | ErrorD0 = 0.0;
|
---|
| 444 | DZ = 0.0;
|
---|
| 445 | ErrorDZ = 0.0;
|
---|
[341014c] | 446 | P = 0.0;
|
---|
| 447 | ErrorP = 0.0;
|
---|
[3051ea17] | 448 | C = 0.0;
|
---|
| 449 | ErrorC = 0.0;
|
---|
[80306e6] | 450 | PT = 0.0;
|
---|
| 451 | ErrorPT = 0.0;
|
---|
| 452 | CtgTheta = 0.0;
|
---|
| 453 | ErrorCtgTheta = 0.0;
|
---|
| 454 | Phi = 0.0;
|
---|
| 455 | ErrorPhi = 0.0;
|
---|
[a0431dc] | 456 | Xd = 0.0;
|
---|
| 457 | Yd = 0.0;
|
---|
| 458 | Zd = 0.0;
|
---|
[a98c7ef] | 459 | TrackResolution = 0.0;
|
---|
[24d005f] | 460 | NCharged = 0;
|
---|
| 461 | NNeutrals = 0;
|
---|
| 462 | Beta = 0.0;
|
---|
| 463 | BetaStar = 0.0;
|
---|
| 464 | MeanSqDeltaR = 0.0;
|
---|
| 465 | PTD = 0.0;
|
---|
[839deb7] | 466 |
|
---|
| 467 | NTimeHits = 0;
|
---|
| 468 | ECalEnergyTimePairs.clear();
|
---|
| 469 |
|
---|
[b62c2da] | 470 | IsolationVar = -999;
|
---|
| 471 | IsolationVarRhoCorr = -999;
|
---|
| 472 | SumPtCharged = -999;
|
---|
| 473 | SumPtNeutral = -999;
|
---|
| 474 | SumPtChargedPU = -999;
|
---|
| 475 | SumPt = -999;
|
---|
[839deb7] | 476 |
|
---|
[ab3bdd9] | 477 | ClusterIndex = -1;
|
---|
| 478 | ClusterNDF = -99;
|
---|
[341014c] | 479 | ClusterSigma = 0.0;
|
---|
[ab3bdd9] | 480 | SumPT2 = 0.0;
|
---|
| 481 | BTVSumPT2 = 0.0;
|
---|
| 482 | GenDeltaZ = 0.0;
|
---|
[341014c] | 483 | GenSumPT2 = 0.0;
|
---|
| 484 |
|
---|
[24d005f] | 485 | FracPt[0] = 0.0;
|
---|
| 486 | FracPt[1] = 0.0;
|
---|
| 487 | FracPt[2] = 0.0;
|
---|
| 488 | FracPt[3] = 0.0;
|
---|
| 489 | FracPt[4] = 0.0;
|
---|
[63178fb] | 490 | Tau[0] = 0.0;
|
---|
| 491 | Tau[1] = 0.0;
|
---|
| 492 | Tau[2] = 0.0;
|
---|
| 493 | Tau[3] = 0.0;
|
---|
| 494 | Tau[4] = 0.0;
|
---|
[839deb7] | 495 |
|
---|
[ba75867] | 496 | SoftDroppedJet.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 497 | SoftDroppedSubJet1.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 498 | SoftDroppedSubJet2.SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 499 |
|
---|
[8d200a6] | 500 | for(i = 0; i < 5; ++i)
|
---|
| 501 | {
|
---|
| 502 | TrimmedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
[839deb7] | 503 | PrunedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
[8d200a6] | 504 | SoftDroppedP4[i].SetXYZT(0.0, 0.0, 0.0, 0.0);
|
---|
| 505 | }
|
---|
| 506 |
|
---|
[edf10ba] | 507 | NSubJetsTrimmed = 0;
|
---|
| 508 | NSubJetsPruned = 0;
|
---|
[de6d698] | 509 | NSubJetsSoftDropped = 0;
|
---|
[839deb7] | 510 |
|
---|
[d7d2da3] | 511 | fArray = 0;
|
---|
| 512 | }
|
---|