1 | /*
|
---|
2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
4 | *
|
---|
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.
|
---|
9 | *
|
---|
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.
|
---|
14 | *
|
---|
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 |
|
---|
19 |
|
---|
20 | /** \class TimeSmearing
|
---|
21 | *
|
---|
22 | * Performs transverse momentum resolution smearing.
|
---|
23 | *
|
---|
24 | * $Date: 2013-02-13 16:58:53 +0100 (Wed, 13 Feb 2013) $
|
---|
25 | * $Revision: 911 $
|
---|
26 | *
|
---|
27 | *
|
---|
28 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
29 | *
|
---|
30 | */
|
---|
31 |
|
---|
32 | #include "modules/TimeSmearing.h"
|
---|
33 |
|
---|
34 | #include "classes/DelphesClasses.h"
|
---|
35 | #include "classes/DelphesFactory.h"
|
---|
36 | #include "classes/DelphesFormula.h"
|
---|
37 |
|
---|
38 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
39 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
40 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
41 |
|
---|
42 | #include "TMath.h"
|
---|
43 | #include "TString.h"
|
---|
44 | #include "TFormula.h"
|
---|
45 | #include "TRandom3.h"
|
---|
46 | #include "TObjArray.h"
|
---|
47 | #include "TDatabasePDG.h"
|
---|
48 | #include "TLorentzVector.h"
|
---|
49 |
|
---|
50 | #include <algorithm>
|
---|
51 | #include <stdexcept>
|
---|
52 | #include <iostream>
|
---|
53 | #include <sstream>
|
---|
54 |
|
---|
55 | using namespace std;
|
---|
56 |
|
---|
57 | //------------------------------------------------------------------------------
|
---|
58 |
|
---|
59 | TimeSmearing::TimeSmearing() :
|
---|
60 | fItInputArray(0)
|
---|
61 | {
|
---|
62 | }
|
---|
63 |
|
---|
64 | //------------------------------------------------------------------------------
|
---|
65 |
|
---|
66 | TimeSmearing::~TimeSmearing()
|
---|
67 | {
|
---|
68 | }
|
---|
69 |
|
---|
70 | //------------------------------------------------------------------------------
|
---|
71 |
|
---|
72 | void TimeSmearing::Init()
|
---|
73 | {
|
---|
74 | // read resolution formula
|
---|
75 |
|
---|
76 | fTimeResolution = GetDouble("TimeResolution", 1.0E-10);
|
---|
77 | // import input array
|
---|
78 |
|
---|
79 | fInputArray = ImportArray(GetString("InputArray", "MuonMomentumSmearing/muons"));
|
---|
80 | fItInputArray = fInputArray->MakeIterator();
|
---|
81 |
|
---|
82 | // create output array
|
---|
83 |
|
---|
84 | fOutputArray = ExportArray(GetString("OutputArray", "muons"));
|
---|
85 | }
|
---|
86 |
|
---|
87 | //------------------------------------------------------------------------------
|
---|
88 |
|
---|
89 | void TimeSmearing::Finish()
|
---|
90 | {
|
---|
91 | if(fItInputArray) delete fItInputArray;
|
---|
92 | }
|
---|
93 |
|
---|
94 | //------------------------------------------------------------------------------
|
---|
95 |
|
---|
96 | void TimeSmearing::Process()
|
---|
97 | {
|
---|
98 | Candidate *candidate, *mother;
|
---|
99 | Double_t t;
|
---|
100 | const Double_t c_light = 2.99792458E8;
|
---|
101 |
|
---|
102 | fItInputArray->Reset();
|
---|
103 | while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
|
---|
104 | {
|
---|
105 | const TLorentzVector &candidatePosition = candidate->Position;
|
---|
106 | t = candidatePosition.T()*1.0E-3/c_light;
|
---|
107 |
|
---|
108 | // apply smearing formula
|
---|
109 | t = gRandom->Gaus(t, fTimeResolution);
|
---|
110 |
|
---|
111 | mother = candidate;
|
---|
112 | candidate = static_cast<Candidate*>(candidate->Clone());
|
---|
113 | candidate->Position.SetT(t*1.0E3*c_light);
|
---|
114 |
|
---|
115 | candidate->AddCandidate(mother);
|
---|
116 |
|
---|
117 | fOutputArray->Add(candidate);
|
---|
118 | }
|
---|
119 | }
|
---|
120 |
|
---|
121 | //------------------------------------------------------------------------------
|
---|