[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 |
|
---|
[5b822e5] | 19 | /** \class Hector
|
---|
| 20 | *
|
---|
| 21 | * Propagates candidates using Hector library.
|
---|
| 22 | *
|
---|
| 23 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 24 | *
|
---|
| 25 | */
|
---|
| 26 |
|
---|
| 27 | #include "modules/Hector.h"
|
---|
| 28 |
|
---|
| 29 | #include "classes/DelphesClasses.h"
|
---|
| 30 | #include "classes/DelphesFactory.h"
|
---|
| 31 | #include "classes/DelphesFormula.h"
|
---|
| 32 |
|
---|
| 33 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
[341014c] | 34 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
| 35 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
[5b822e5] | 36 |
|
---|
| 37 | #include "TDatabasePDG.h"
|
---|
[341014c] | 38 | #include "TFormula.h"
|
---|
[5b822e5] | 39 | #include "TLorentzVector.h"
|
---|
[341014c] | 40 | #include "TMath.h"
|
---|
| 41 | #include "TObjArray.h"
|
---|
| 42 | #include "TRandom3.h"
|
---|
| 43 | #include "TString.h"
|
---|
[5b822e5] | 44 |
|
---|
| 45 | #include <algorithm>
|
---|
| 46 | #include <iostream>
|
---|
| 47 | #include <sstream>
|
---|
[341014c] | 48 | #include <stdexcept>
|
---|
[5b822e5] | 49 |
|
---|
| 50 | #include "Hector/H_BeamLine.h"
|
---|
| 51 | #include "Hector/H_BeamParticle.h"
|
---|
[341014c] | 52 | #include "Hector/H_RecRPObject.h"
|
---|
[5b822e5] | 53 |
|
---|
| 54 | using namespace std;
|
---|
| 55 |
|
---|
| 56 | //------------------------------------------------------------------------------
|
---|
| 57 |
|
---|
| 58 | Hector::Hector() :
|
---|
| 59 | fBeamLine(0), fItInputArray(0)
|
---|
| 60 | {
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | //------------------------------------------------------------------------------
|
---|
| 64 |
|
---|
| 65 | Hector::~Hector()
|
---|
| 66 | {
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | //------------------------------------------------------------------------------
|
---|
| 70 |
|
---|
| 71 | void Hector::Init()
|
---|
| 72 | {
|
---|
| 73 | // read Hector parameters
|
---|
| 74 |
|
---|
| 75 | fDirection = GetInt("Direction", 1);
|
---|
| 76 | fBeamLineLength = GetDouble("BeamLineLength", 430.0);
|
---|
| 77 | fDistance = GetDouble("Distance", 420.0);
|
---|
[8f7db23] | 78 | fOffsetX = GetDouble("OffsetX", 0.0);
|
---|
| 79 | fOffsetS = GetDouble("OffsetS", 120.0);
|
---|
[5b822e5] | 80 | fSigmaE = GetDouble("SigmaE", 0.0);
|
---|
| 81 | fSigmaX = GetDouble("SigmaX", 0.0);
|
---|
| 82 | fSigmaY = GetDouble("SigmaY", 0.0);
|
---|
[8f7db23] | 83 | fSigmaT = GetDouble("SigmaT", 0.0);
|
---|
[5b822e5] | 84 | fEtaMin = GetDouble("EtaMin", 5.0);
|
---|
| 85 |
|
---|
| 86 | fBeamLine = new H_BeamLine(fDirection, fBeamLineLength + 0.1);
|
---|
[a8782e8] | 87 | fBeamLine->fill(GetString("BeamLineFile", "cards/LHCB1IR5_5TeV.tfs"), fDirection, GetString("IPName", "IP5"));
|
---|
[8f7db23] | 88 | fBeamLine->offsetElements(fOffsetS, fOffsetX);
|
---|
[5b822e5] | 89 | fBeamLine->calcMatrix();
|
---|
| 90 |
|
---|
| 91 | // import input array
|
---|
| 92 |
|
---|
| 93 | fInputArray = ImportArray(GetString("InputArray", "ParticlePropagator/stableParticles"));
|
---|
| 94 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 95 |
|
---|
| 96 | // create output array
|
---|
| 97 |
|
---|
[8f7db23] | 98 | fOutputArray = ExportArray(GetString("OutputArray", "hits"));
|
---|
[5b822e5] | 99 | }
|
---|
| 100 |
|
---|
| 101 | //------------------------------------------------------------------------------
|
---|
| 102 |
|
---|
| 103 | void Hector::Finish()
|
---|
| 104 | {
|
---|
| 105 | if(fItInputArray) delete fItInputArray;
|
---|
| 106 | if(fBeamLine) delete fBeamLine;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | //------------------------------------------------------------------------------
|
---|
| 110 |
|
---|
| 111 | void Hector::Process()
|
---|
| 112 | {
|
---|
| 113 | Candidate *candidate, *mother;
|
---|
| 114 | Double_t pz;
|
---|
[8f7db23] | 115 | Double_t x, y, z, tx, ty, theta;
|
---|
| 116 | Double_t distance, time;
|
---|
| 117 |
|
---|
| 118 | const Double_t c_light = 2.99792458E8;
|
---|
[5b822e5] | 119 |
|
---|
| 120 | fItInputArray->Reset();
|
---|
[341014c] | 121 | while((candidate = static_cast<Candidate *>(fItInputArray->Next())))
|
---|
[5b822e5] | 122 | {
|
---|
| 123 | const TLorentzVector &candidatePosition = candidate->Position;
|
---|
| 124 | const TLorentzVector &candidateMomentum = candidate->Momentum;
|
---|
| 125 | pz = candidateMomentum.Pz();
|
---|
| 126 |
|
---|
[64a4950] | 127 | if(TMath::Abs(candidateMomentum.Eta()) <= fEtaMin || TMath::Sign(pz, Double_t(fDirection)) != pz) continue;
|
---|
[5b822e5] | 128 |
|
---|
| 129 | x = 1.0E3 * candidatePosition.X();
|
---|
| 130 | y = 1.0E3 * candidatePosition.Y();
|
---|
[b67be31] | 131 | z = 1.0E-3 * candidatePosition.Z();
|
---|
[5b822e5] | 132 |
|
---|
[341014c] | 133 | // tx = 1.0E6 * TMath::ATan(candidateMomentum.Px()/pz);
|
---|
| 134 | // ty = 1.0E6 * TMath::ATan(candidateMomentum.Py()/pz);
|
---|
[5b822e5] | 135 |
|
---|
| 136 | tx = 0.0;
|
---|
| 137 | ty = 0.0;
|
---|
| 138 |
|
---|
[341014c] | 139 | theta = TMath::Hypot(TMath::ATan(candidateMomentum.Px() / pz), TMath::ATan(candidateMomentum.Py() / pz));
|
---|
| 140 | distance = (fDistance - 1.0E-3 * candidatePosition.Z()) / TMath::Cos(theta);
|
---|
| 141 | time = gRandom->Gaus((distance + 1.0E-3 * candidatePosition.T()) / c_light, fSigmaT);
|
---|
[8f7db23] | 142 |
|
---|
[5b822e5] | 143 | H_BeamParticle particle(candidate->Mass, candidate->Charge);
|
---|
[341014c] | 144 | // particle.set4Momentum(candidateMomentum);
|
---|
| 145 | particle.set4Momentum(candidateMomentum.Px(), candidateMomentum.Py(),
|
---|
| 146 | candidateMomentum.Pz(), candidateMomentum.E());
|
---|
[5b822e5] | 147 | particle.setPosition(x, y, tx, ty, z);
|
---|
| 148 |
|
---|
| 149 | particle.smearAng(fSigmaX, fSigmaY, gRandom);
|
---|
| 150 | particle.smearE(fSigmaE, gRandom);
|
---|
| 151 |
|
---|
| 152 | particle.computePath(fBeamLine);
|
---|
| 153 |
|
---|
| 154 | if(particle.stopped(fBeamLine)) continue;
|
---|
| 155 |
|
---|
| 156 | particle.propagate(fDistance);
|
---|
| 157 |
|
---|
| 158 | mother = candidate;
|
---|
[341014c] | 159 | candidate = static_cast<Candidate *>(candidate->Clone());
|
---|
[8f7db23] | 160 | candidate->Position.SetXYZT(particle.getX(), particle.getY(), particle.getS(), time);
|
---|
[5b822e5] | 161 | candidate->Momentum.SetPxPyPzE(particle.getTX(), particle.getTY(), 0.0, particle.getE());
|
---|
| 162 | candidate->AddCandidate(mother);
|
---|
| 163 |
|
---|
| 164 | fOutputArray->Add(candidate);
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 |
|
---|
| 168 | //------------------------------------------------------------------------------
|
---|