[d7d2da3] | 1 | /** \class PileUpMerger
|
---|
| 2 | *
|
---|
| 3 | * Merges particles from pile-up sample into event
|
---|
| 4 | *
|
---|
| 5 | *
|
---|
| 6 | * $Date: 2013-02-12 15:13:59 +0100 (Tue, 12 Feb 2013) $
|
---|
| 7 | * $Revision: 907 $
|
---|
| 8 | *
|
---|
| 9 | *
|
---|
| 10 | * \author M. Selvaggi - UCL, Louvain-la-Neuve
|
---|
| 11 | *
|
---|
| 12 | */
|
---|
| 13 |
|
---|
| 14 | #include "modules/PileUpMerger.h"
|
---|
| 15 |
|
---|
| 16 | #include "classes/DelphesClasses.h"
|
---|
| 17 | #include "classes/DelphesFactory.h"
|
---|
[22dc7fd] | 18 | #include "classes/DelphesTF2.h"
|
---|
[d7d2da3] | 19 | #include "classes/DelphesPileUpReader.h"
|
---|
| 20 |
|
---|
| 21 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
| 22 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
| 23 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
| 24 |
|
---|
| 25 | #include "TMath.h"
|
---|
| 26 | #include "TString.h"
|
---|
| 27 | #include "TFormula.h"
|
---|
| 28 | #include "TRandom3.h"
|
---|
| 29 | #include "TObjArray.h"
|
---|
| 30 | #include "TDatabasePDG.h"
|
---|
| 31 | #include "TLorentzVector.h"
|
---|
| 32 |
|
---|
| 33 | #include <algorithm>
|
---|
| 34 | #include <stdexcept>
|
---|
| 35 | #include <iostream>
|
---|
| 36 | #include <sstream>
|
---|
| 37 |
|
---|
| 38 | using namespace std;
|
---|
| 39 |
|
---|
| 40 | //------------------------------------------------------------------------------
|
---|
| 41 |
|
---|
| 42 | PileUpMerger::PileUpMerger() :
|
---|
[22dc7fd] | 43 | fFunction(0), fReader(0), fItInputArray(0)
|
---|
[d7d2da3] | 44 | {
|
---|
[22dc7fd] | 45 | fFunction = new DelphesTF2;
|
---|
[d7d2da3] | 46 | }
|
---|
| 47 |
|
---|
[22dc7fd] | 48 |
|
---|
[d7d2da3] | 49 | //------------------------------------------------------------------------------
|
---|
| 50 |
|
---|
| 51 | PileUpMerger::~PileUpMerger()
|
---|
| 52 | {
|
---|
[22dc7fd] | 53 | delete fFunction;
|
---|
[d7d2da3] | 54 | }
|
---|
| 55 |
|
---|
| 56 | //------------------------------------------------------------------------------
|
---|
| 57 |
|
---|
| 58 | void PileUpMerger::Init()
|
---|
| 59 | {
|
---|
| 60 | const char *fileName;
|
---|
| 61 |
|
---|
[76d3973] | 62 | fPileUpDistribution = GetInt("PileUpDistribution", 0);
|
---|
| 63 |
|
---|
[d7d2da3] | 64 | fMeanPileUp = GetDouble("MeanPileUp", 10);
|
---|
[0ed696f] | 65 |
|
---|
[22dc7fd] | 66 | fZVertexSpread = GetDouble("ZVertexSpread", 0.15);
|
---|
| 67 | fTVertexSpread = GetDouble("TVertexSpread", 1.5E-09);
|
---|
| 68 |
|
---|
| 69 | // read vertex smearing formula
|
---|
[0ed696f] | 70 |
|
---|
[22dc7fd] | 71 | fFunction->Compile(GetString("VertexDistributionFormula", "0.0"));
|
---|
[0ed696f] | 72 | fFunction->SetRange(-fZVertexSpread, -fTVertexSpread, fZVertexSpread, fTVertexSpread);
|
---|
| 73 |
|
---|
[d7d2da3] | 74 | fileName = GetString("PileUpFile", "MinBias.pileup");
|
---|
| 75 | fReader = new DelphesPileUpReader(fileName);
|
---|
| 76 |
|
---|
| 77 | // import input array
|
---|
| 78 | fInputArray = ImportArray(GetString("InputArray", "Delphes/stableParticles"));
|
---|
| 79 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 80 |
|
---|
| 81 | // create output arrays
|
---|
[d07e957] | 82 | fParticleOutputArray = ExportArray(GetString("ParticleOutputArray", "stableParticles"));
|
---|
| 83 | fVertexOutputArray = ExportArray(GetString("VertexOutputArray", "vertices"));
|
---|
[d7d2da3] | 84 | }
|
---|
| 85 |
|
---|
| 86 | //------------------------------------------------------------------------------
|
---|
| 87 |
|
---|
| 88 | void PileUpMerger::Finish()
|
---|
| 89 | {
|
---|
| 90 | if(fReader) delete fReader;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | //------------------------------------------------------------------------------
|
---|
| 94 |
|
---|
| 95 | void PileUpMerger::Process()
|
---|
| 96 | {
|
---|
| 97 | TDatabasePDG *pdg = TDatabasePDG::Instance();
|
---|
| 98 | TParticlePDG *pdgParticle;
|
---|
| 99 | Int_t pid;
|
---|
| 100 | Float_t x, y, z, t;
|
---|
| 101 | Float_t px, py, pz, e;
|
---|
[22dc7fd] | 102 | Double_t dz, dphi, dt;
|
---|
[76d3973] | 103 | Int_t numberOfEvents, event;
|
---|
[d7d2da3] | 104 | Long64_t allEntries, entry;
|
---|
[22dc7fd] | 105 | Candidate *candidate, *vertexcandidate;
|
---|
[d7d2da3] | 106 | DelphesFactory *factory;
|
---|
[0ed696f] | 107 |
|
---|
[22dc7fd] | 108 | const Double_t c_light = 2.99792458E8;
|
---|
[d7d2da3] | 109 |
|
---|
| 110 | fItInputArray->Reset();
|
---|
[0ed696f] | 111 |
|
---|
| 112 | // --- Deal with Primary vertex first ------
|
---|
| 113 |
|
---|
| 114 | fFunction->GetRandom2(dz, dt);
|
---|
| 115 |
|
---|
| 116 | dt *= c_light*1.0E3; // necessary in order to make t in mm/c
|
---|
| 117 | dz *= 1.0E3; // necessary in order to make z in mm
|
---|
| 118 |
|
---|
[d7d2da3] | 119 | while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
|
---|
| 120 | {
|
---|
[22dc7fd] | 121 | candidate->Position.SetXYZT(x, y, z+dz, t+dt);
|
---|
[d07e957] | 122 | fParticleOutputArray->Add(candidate);
|
---|
[d7d2da3] | 123 | }
|
---|
| 124 |
|
---|
| 125 | factory = GetFactory();
|
---|
[0ed696f] | 126 |
|
---|
[22dc7fd] | 127 | vertexcandidate = factory->NewCandidate();
|
---|
| 128 | vertexcandidate->Position.SetXYZT(0.0, 0.0, dz, dt);
|
---|
| 129 | fVertexOutputArray->Add(vertexcandidate);
|
---|
[0ed696f] | 130 |
|
---|
[22dc7fd] | 131 | // --- Then with pile-up vertices ------
|
---|
[0ed696f] | 132 |
|
---|
[76d3973] | 133 | switch(fPileUpDistribution)
|
---|
| 134 | {
|
---|
| 135 | case 0:
|
---|
| 136 | numberOfEvents = gRandom->Poisson(fMeanPileUp);
|
---|
| 137 | break;
|
---|
| 138 | case 1:
|
---|
| 139 | numberOfEvents = gRandom->Integer(2*fMeanPileUp + 1);
|
---|
| 140 | break;
|
---|
| 141 | default:
|
---|
| 142 | numberOfEvents = gRandom->Poisson(fMeanPileUp);
|
---|
| 143 | break;
|
---|
| 144 | }
|
---|
[d7d2da3] | 145 |
|
---|
| 146 | allEntries = fReader->GetEntries();
|
---|
[0ed696f] | 147 |
|
---|
[76d3973] | 148 | for(event = 0; event < numberOfEvents; ++event)
|
---|
[d7d2da3] | 149 | {
|
---|
| 150 | do
|
---|
| 151 | {
|
---|
| 152 | entry = TMath::Nint(gRandom->Rndm()*allEntries);
|
---|
| 153 | }
|
---|
| 154 | while(entry >= allEntries);
|
---|
| 155 |
|
---|
| 156 | fReader->ReadEntry(entry);
|
---|
[0ed696f] | 157 |
|
---|
| 158 | // --- Pile-up vertex smearing
|
---|
| 159 |
|
---|
| 160 | fFunction->GetRandom2(dz, dt);
|
---|
| 161 |
|
---|
| 162 | dt *= c_light*1.0E3; // necessary in order to make t in mm/c
|
---|
| 163 | dz *= 1.0E3; // necessary in order to make z in mm
|
---|
| 164 |
|
---|
[b68a60f] | 165 | dphi = gRandom->Uniform(-TMath::Pi(), TMath::Pi());
|
---|
[d7d2da3] | 166 |
|
---|
[22dc7fd] | 167 | vertexcandidate = factory->NewCandidate();
|
---|
| 168 | vertexcandidate->Position.SetXYZT(0.0, 0.0, dz, dt);
|
---|
| 169 | vertexcandidate->IsPU = 1;
|
---|
[0ed696f] | 170 |
|
---|
[22dc7fd] | 171 | fVertexOutputArray->Add(vertexcandidate);
|
---|
[d07e957] | 172 |
|
---|
[d7d2da3] | 173 | while(fReader->ReadParticle(pid, x, y, z, t, px, py, pz, e))
|
---|
| 174 | {
|
---|
| 175 | candidate = factory->NewCandidate();
|
---|
| 176 |
|
---|
| 177 | candidate->PID = pid;
|
---|
| 178 |
|
---|
| 179 | candidate->Status = 1;
|
---|
| 180 |
|
---|
| 181 | pdgParticle = pdg->GetParticle(pid);
|
---|
| 182 | candidate->Charge = pdgParticle ? Int_t(pdgParticle->Charge()/3.0) : -999;
|
---|
| 183 | candidate->Mass = pdgParticle ? pdgParticle->Mass() : -999.9;
|
---|
| 184 |
|
---|
| 185 | candidate->IsPU = 1;
|
---|
[0ed696f] | 186 |
|
---|
[d7d2da3] | 187 | candidate->Momentum.SetPxPyPzE(px, py, pz, e);
|
---|
[b68a60f] | 188 | candidate->Momentum.RotateZ(dphi);
|
---|
| 189 |
|
---|
[22dc7fd] | 190 | candidate->Position.SetXYZT(x, y, z+dz, t+dt);
|
---|
[b68a60f] | 191 | candidate->Position.RotateZ(dphi);
|
---|
[0ed696f] | 192 |
|
---|
[d07e957] | 193 | fParticleOutputArray->Add(candidate);
|
---|
[d7d2da3] | 194 | }
|
---|
| 195 | }
|
---|
| 196 | }
|
---|
| 197 |
|
---|
| 198 | //------------------------------------------------------------------------------
|
---|
| 199 |
|
---|