1 | /***********************************************************************
|
---|
2 | ** **
|
---|
3 | ** /----------------------------------------------\ **
|
---|
4 | ** | Delphes, a framework for the fast simulation | **
|
---|
5 | ** | of a generic collider experiment | **
|
---|
6 | ** \----------------------------------------------/ **
|
---|
7 | ** **
|
---|
8 | ** **
|
---|
9 | ** This package uses: **
|
---|
10 | ** ------------------ **
|
---|
11 | ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **
|
---|
12 | ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **
|
---|
13 | ** FROG: [hep-ex/0901.2718v1] **
|
---|
14 | ** **
|
---|
15 | ** ------------------------------------------------------------------ **
|
---|
16 | ** **
|
---|
17 | ** Main authors: **
|
---|
18 | ** ------------- **
|
---|
19 | ** **
|
---|
20 | ** Severine Ovyn Xavier Rouby **
|
---|
21 | ** severine.ovyn@uclouvain.be xavier.rouby@cern **
|
---|
22 | ** **
|
---|
23 | ** Center for Particle Physics and Phenomenology (CP3) **
|
---|
24 | ** Universite catholique de Louvain (UCL) **
|
---|
25 | ** Louvain-la-Neuve, Belgium **
|
---|
26 | ** **
|
---|
27 | ** Copyright (C) 2008-2009, **
|
---|
28 | ** All rights reserved. **
|
---|
29 | ** **
|
---|
30 | ***********************************************************************/
|
---|
31 |
|
---|
32 | #include "VeryForward.h"
|
---|
33 | #include "H_RomanPot.h"
|
---|
34 | #include <iostream>
|
---|
35 | #include<cmath>
|
---|
36 |
|
---|
37 | using namespace std;
|
---|
38 |
|
---|
39 |
|
---|
40 | //------------------------------------------------------------------------------
|
---|
41 |
|
---|
42 | VeryForward::VeryForward() {
|
---|
43 | DET = new RESOLution();
|
---|
44 | beamline1 = new H_BeamLine(1,500.);
|
---|
45 | beamline2 = new H_BeamLine(1,500.);
|
---|
46 | init();
|
---|
47 | //Initialisation of Hector
|
---|
48 | relative_energy = true; // should always be true
|
---|
49 | kickers_on = 1; // should always be 1
|
---|
50 |
|
---|
51 | }
|
---|
52 |
|
---|
53 | VeryForward::VeryForward(const string& DetDatacard) {
|
---|
54 | DET = new RESOLution();
|
---|
55 | DET->ReadDataCard(DetDatacard);
|
---|
56 | beamline1 = new H_BeamLine(1,500.);
|
---|
57 | beamline2 = new H_BeamLine(1,500.);
|
---|
58 | init();
|
---|
59 | //Initialisation of Hector
|
---|
60 | relative_energy = true; // should always be true
|
---|
61 | kickers_on = 1; // should always be 1
|
---|
62 |
|
---|
63 | }
|
---|
64 |
|
---|
65 | VeryForward::VeryForward(const RESOLution * DetDatacard) {
|
---|
66 | DET = new RESOLution(*DetDatacard);
|
---|
67 | beamline2 = new H_BeamLine(1,500.);
|
---|
68 | beamline1 = new H_BeamLine(1,500.);
|
---|
69 |
|
---|
70 | init();
|
---|
71 | //Initialisation of Hector
|
---|
72 | relative_energy = true; // should always be true
|
---|
73 | kickers_on = 1; // should always be 1
|
---|
74 |
|
---|
75 | }
|
---|
76 |
|
---|
77 | VeryForward::VeryForward(const VeryForward& vf) {
|
---|
78 | DET = new RESOLution(*(vf.DET));
|
---|
79 | beamline1 = new H_BeamLine(*(vf.beamline1));
|
---|
80 | beamline2 = new H_BeamLine(*(vf.beamline2));
|
---|
81 | }
|
---|
82 |
|
---|
83 | VeryForward& VeryForward::operator=(const VeryForward& vf){
|
---|
84 | if (this==&vf) return *this;
|
---|
85 | DET = new RESOLution(*(vf.DET));
|
---|
86 | beamline1 = new H_BeamLine(*(vf.beamline1));
|
---|
87 | beamline2 = new H_BeamLine(*(vf.beamline2));
|
---|
88 | return *this;
|
---|
89 | }
|
---|
90 |
|
---|
91 |
|
---|
92 | void VeryForward::init() {
|
---|
93 | //Initialisation of Hector
|
---|
94 | relative_energy = true; // should always be true
|
---|
95 | kickers_on = 1; // should always be 1
|
---|
96 | // user should provide : (1) optics file for each beamline, and IPname,
|
---|
97 | // and offset data (s,x) for optical elements
|
---|
98 | beamline1->fill(DET->RP_beam1Card,1,DET->RP_IP_name);
|
---|
99 | beamline1->offsetElements(DET->RP_offsetEl_s,-DET->RP_offsetEl_x);
|
---|
100 | H_RomanPot * rp220_1 = new H_RomanPot("rp220_1",DET->RP_220_s,DET->RP_220_x*(1E6)); // RP 220m, 2mm, beam 1
|
---|
101 | H_RomanPot * rp420_1 = new H_RomanPot("rp420_1",DET->RP_420_s,DET->RP_420_x*(1E6)); // RP 420m, 4mm, beam 1
|
---|
102 | beamline1->add(rp220_1);
|
---|
103 | beamline1->add(rp420_1);
|
---|
104 |
|
---|
105 | beamline2->fill(DET->RP_beam2Card,-1,DET->RP_IP_name);
|
---|
106 | beamline2->offsetElements(DET->RP_offsetEl_s,+DET->RP_offsetEl_x);
|
---|
107 | H_RomanPot * rp220_2 = new H_RomanPot("rp220_2",DET->RP_220_s,DET->RP_220_x*(1E6));// RP 220m, 2mm, beam 2
|
---|
108 | H_RomanPot * rp420_2 = new H_RomanPot("rp420_2",DET->RP_420_s,DET->RP_420_x*(1E6));// RP 420m, 4mm, beam 2
|
---|
109 | beamline2->add(rp220_2);
|
---|
110 | beamline2->add(rp420_2);
|
---|
111 | // rp220_1, rp220_2, rp420_1 and rp420_2 will be deallocated in ~H_AbstractBeamLine
|
---|
112 | // do not put explicit delete
|
---|
113 | }
|
---|
114 |
|
---|
115 |
|
---|
116 | void VeryForward::ZDC(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchZDC,TRootGenParticle *particle)
|
---|
117 | {
|
---|
118 | int pid=abs(particle->PID);
|
---|
119 | float eta=fabs(particle->Eta);
|
---|
120 |
|
---|
121 |
|
---|
122 | TRootZdcHits *elementZdc;
|
---|
123 | TLorentzVector genMomentum;
|
---|
124 | // Zero degree calorimeter, for forward neutrons and photons
|
---|
125 | if (particle->Status ==1 && (pid == pN || pid == pGAMMA ) && eta > DET->VFD_min_zdc ) {
|
---|
126 | genMomentum.SetPxPyPzE(particle->Px, particle->Py, particle->Pz, particle->E);
|
---|
127 | // !!!!!!!!! vérifier que particle->Z est bien en micromÚtres!!!
|
---|
128 | // !!!!!!!!! vérifier que particle->T est bien en secondes!!!
|
---|
129 | // !!!!!!!!! pas de smearing ! on garde trop d'info !
|
---|
130 | elementZdc = (TRootZdcHits*) branchZDC->NewEntry();
|
---|
131 | elementZdc->Set(genMomentum);
|
---|
132 |
|
---|
133 | // time of flight t is t = T + d/[ cos(theta) v ]
|
---|
134 | //double tx = acos(particle->Px/particle->Pz);
|
---|
135 | //double ty = acos(particle->Py/particle->Pz);
|
---|
136 | //double theta = (1E-6)*sqrt( pow(tx,2) + pow(ty,2) );
|
---|
137 | //double flight_distance = (DET->ZDC_S - particle->Z*(1E-6))/cos(theta) ; // assumes that Z is in micrometers
|
---|
138 | double flight_distance = (DET->VFD_s_zdc - particle->Z*(1E-6));
|
---|
139 | // assumes also that the emission angle is so small that 1/(cos theta) = 1
|
---|
140 | elementZdc->T = 0*particle->T + flight_distance/speed_of_light; // assumes highly relativistic particles
|
---|
141 | elementZdc->side = sign(eta);
|
---|
142 |
|
---|
143 |
|
---|
144 | }
|
---|
145 |
|
---|
146 | }
|
---|
147 | void VeryForward::RomanPots(ExRootTreeWriter *treeWriter, ExRootTreeBranch *branchRP220,ExRootTreeBranch *branchFP420,TRootGenParticle *particle)
|
---|
148 | {
|
---|
149 | int pid=abs(particle->PID);
|
---|
150 | float eta=fabs(particle->Eta);
|
---|
151 |
|
---|
152 | TRootRomanPotHits* elementRP220;
|
---|
153 | TRootRomanPotHits* elementFP420;
|
---|
154 |
|
---|
155 | TLorentzVector genMomentum;
|
---|
156 | genMomentum.SetPxPyPzE(particle->Px, particle->Py, particle->Pz, particle->E);
|
---|
157 | // if forward proton
|
---|
158 | if( (pid == pP) && (particle->Status == 1) && (fabs(genMomentum.Eta()) > DET->CEN_max_calo_fwd) )
|
---|
159 | {
|
---|
160 | // !!!!!!!! put here particle->CHARGE and particle->MASS
|
---|
161 | H_BeamParticle p1; /// put here particle->CHARGE and particle->MASS
|
---|
162 | p1.smearAng();
|
---|
163 | p1.smearPos();
|
---|
164 | p1.setPosition(p1.getX()+DET->RP_cross_x,p1.getY()+DET->RP_cross_y,p1.getTX()-1*kickers_on*DET->RP_cross_ang,p1.getTY(),0);
|
---|
165 | p1.set4Momentum(particle->Px,particle->Py,particle->Pz,particle->E);
|
---|
166 |
|
---|
167 | H_BeamLine *beamline;
|
---|
168 | if(genMomentum.Eta() >0) beamline = beamline1;
|
---|
169 | else beamline = beamline2;
|
---|
170 |
|
---|
171 | p1.computePath(beamline,1);
|
---|
172 |
|
---|
173 | if(p1.stopped(beamline)) {
|
---|
174 | if (p1.getStoppingElement()->getName()=="rp220_1" || p1.getStoppingElement()->getName()=="rp220_2") {
|
---|
175 | p1.propagate(DET->RP_220_s);
|
---|
176 | elementRP220 = (TRootRomanPotHits*) branchRP220->NewEntry();
|
---|
177 | elementRP220->X = (1E-6)*p1.getX(); // [m]
|
---|
178 | elementRP220->Y = (1E-6)*p1.getY(); // [m]
|
---|
179 | elementRP220->Tx = (1E-6)*p1.getTX(); // [rad]
|
---|
180 | elementRP220->Ty = (1E-6)*p1.getTY(); // [rad]
|
---|
181 | elementRP220->S = p1.getS(); // [m]
|
---|
182 | elementRP220->T = -1; // not yet implemented
|
---|
183 | elementRP220->E = p1.getE(); // not yet implemented
|
---|
184 | elementRP220->q2 = -1; // not yet implemented
|
---|
185 | elementRP220->side = sign(eta);
|
---|
186 |
|
---|
187 | } else if (p1.getStoppingElement()->getName()=="rp420_1" || p1.getStoppingElement()->getName()=="rp420_2") {
|
---|
188 | p1.propagate(DET->RP_420_s);
|
---|
189 | elementFP420 = (TRootRomanPotHits*) branchFP420->NewEntry();
|
---|
190 | elementFP420->X = (1E-6)*p1.getX(); // [m]
|
---|
191 | elementFP420->Y = (1E-6)*p1.getY(); // [m]
|
---|
192 | elementFP420->Tx = (1E-6)*p1.getTX(); // [rad]
|
---|
193 | elementFP420->Ty = (1E-6)*p1.getTY(); // [rad]
|
---|
194 | elementFP420->S = p1.getS(); // [m]
|
---|
195 | elementFP420->T = -1; // not yet implemented
|
---|
196 | elementFP420->E = p1.getE(); // not yet implemented
|
---|
197 | elementFP420->q2 = -1; // not yet implemented
|
---|
198 | elementFP420->side = sign(eta);
|
---|
199 | }
|
---|
200 |
|
---|
201 | }
|
---|
202 | // if(p1.stopped(beamline) && (p1.getStoppingElement()->getS() > 100))
|
---|
203 | // cout << "Eloss =" << 7000.-p1.getE() << " ; " << p1.getStoppingElement()->getName() << endl;
|
---|
204 | } // if forward proton
|
---|
205 | }
|
---|
206 |
|
---|
207 | // Forward particles in CASTOR ?
|
---|
208 | // /* if (particle->Status == 1 && (fabs(particle->Eta) > DET->MIN_CALO_VFWD)
|
---|
209 | // && (fabs(particle->Eta) < DET->MAX_CALO_VFWD)) {
|
---|
210 | //
|
---|
211 | //
|
---|
212 | // } // CASTOR
|
---|
213 | // */
|
---|
214 | //
|
---|