BOSS 7.1.3
BESIII Offline Software System
Loading...
Searching...
No Matches
BabayagaNLO Class Reference

#include <BabayagaNLO.h>

+ Inheritance diagram for BabayagaNLO:

Public Member Functions

 BabayagaNLO (const std::string &name, ISvcLocator *pSvcLocator)
 
StatusCode initialize ()
 
StatusCode execute ()
 
StatusCode finalize ()
 

Detailed Description

Definition at line 18 of file BabayagaNLO.h.

Constructor & Destructor Documentation

◆ BabayagaNLO()

BabayagaNLO::BabayagaNLO ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 71 of file BabayagaNLO.cxx.

71 : Algorithm(name, pSvcLocator)
72{
73// enum int_pars {kChannel,kVerbose,kNsearch,kAlphaRun,kPhMode,kModelVP,kPrecision,kUseWeighted,kDarkMode};
74// enum dbl_pars {kEcm,kEspread,kCutTh0,kCutTh1,kCutAColl,kCutEmin,kCutInvMass0,kCutInvMass1,kDarkMass,kDarkWidth,kDarkVec,kDarkAx,kMaxSdif,kScaleVPerr};
75
76 declareProperty("Channel", m_ch = 0); // 0=ee, 1=mumu, 2 = gg
77 declareProperty("Verbose", m_iverbose = 0);
78 declareProperty("Nsearch", m_nsearch = 4000000); // event used for maximum search
79 declareProperty("RunningAlpha", m_arun = 0); // alpha running
80 declareProperty("VPparam", m_iteubn = 0); // 0= Jegerlehner, 1 = Teubner, 2 = Novosibirsk
81 declareProperty("PhotonNumber", m_photmode = -1); // maximum number of photon (-1 = unlimited (40))
82 declareProperty("Precision", m_precision = 0); // 0=best, 1=alpha2, 2=born
83
84 declareProperty("CMSEnergy", m_ecmsinput = 3.686);
85 declareProperty("BeamEnergySpread", m_beamspread = 0.0013);
86
87 declareProperty("ThetaMin", m_thmin = 10); //| Range of charged particles (ee,mumu)
88 declareProperty("ThetaMax", m_thmax = 170);//| or one photon pair (gg)
89 declareProperty("AcollMax", m_zmax = 180.0);// Maximum acollinearity
90 declareProperty("Emin", m_emin = 0.001); // minimum energy of charged tracks/most energetic photons
91 declareProperty("MinInvMass", m_Minv_min = 0.0); //| Range of invariant mass to be generated
92 declareProperty("MaxInvMass", m_Minv_max = -1.0);//| charged (ee,mumu) or at least one photon pair (gg)
93
94 declareProperty("MaximumVal", m_sdif_max = 1.e-18); //starting value for maximum search
95 declareProperty("ScaleVPerr", m_scale_vperr = 0.0); // add hadronic vp error scaled by this value ( vp_hadr = vp_hadr + scale*d_hvp, default: no addition)
96
97
98 declareProperty("UseWeightedEv", m_weighted = 0); //enable generation of weighted events (default: unweighted)
99
100 declareProperty("DarkMode", m_darkmode = 0); // use dark photon (A') model
101 declareProperty("DarkMass", m_DarkMass = 0.4); // A' mass
102 declareProperty("DarkWidth", m_DarkWidth = -1.0); // A' width (default: point-like)
103 declareProperty("DarkVectorCoupling", m_DarkVec = 1.e-3); //| A'
104 declareProperty("DarkAxialCoupling" , m_DarkAxial = 0); //| couplings
105
106 std::string path = "./";
107 if (getenv("BABAYAGANLOROOT")!=NULL){
108 path = getenv("BABAYAGANLOROOT");
109 path+= "/share/";
110 }
111 path.append("vpol_novosibirsk.dat");
112 declareProperty("NskFilePath" , m_nsk_filepath = path); // path to nsk VP input file
113
114
115
116
117
118}
#define NULL

Member Function Documentation

◆ execute()

StatusCode BabayagaNLO::execute ( )

Definition at line 183 of file BabayagaNLO.cxx.

183 {
184 MsgStream log(msgSvc(), name());
185 log << MSG::DEBUG << "BabayagaNLO in execute()" << endreq;
186
187 // Fill event information
188 GenEvent* evt = new GenEvent(1,1);
189 GenVertex* prod_vtx = new GenVertex();
190 evt->add_vertex( prod_vtx );
191
192 log << MSG::DEBUG << "check point 1" << endreq;
193 bool unw = !(m_weighted);
194
195 log << MSG::DEBUG << "check point 2" << endreq;
196 generate_event_(unw);
197
198 log << MSG::DEBUG << "check point 3" << endreq;
199 int finalpidm,finalpidp;
200 if (m_ch == 0) {
201 finalpidm=11;
202 finalpidp=-11;
203 } else if (m_ch == 1) {
204 finalpidm=13;
205 finalpidp=-13;
206 } else if (m_ch == 2) {
207 finalpidm=22;
208 finalpidp=22;
209 } else {
210 finalpidm=11;
211 finalpidp=-11;
212 }
213
214 double *p1 = momentainitial_.pin1;
215 double *p2 = momentainitial_.pin2;
216 double *p3 = event_mom_.p1;
217 double *p4 = event_mom_.p2;
218
219
220 //incoming particle -
221 GenParticle *p = new GenParticle(CLHEP::HepLorentzVector(p1[1],p1[2],-p1[3],p1[0]), 11, 3);
222 p->suggest_barcode(1);
223 prod_vtx->add_particle_in(p);
224
225 //incoming particle +
226 p = new GenParticle(CLHEP::HepLorentzVector(p2[1],p2[2],-p2[3],p2[0]), -11, 3);
227 p->suggest_barcode(2);
228 prod_vtx->add_particle_in(p);
229
230 log << MSG::DEBUG << "check point 4" << endreq;
231 //outgoing particle -
232 p = new GenParticle(CLHEP::HepLorentzVector(p3[1],p3[2],-p3[3],p3[0]), finalpidm, 1);
233 p->suggest_barcode(3);
234 prod_vtx->add_particle_out(p);
235
236 //outgoing particle +
237 p = new GenParticle(CLHEP::HepLorentzVector(p4[1],p4[2],-p4[3],p4[0]), finalpidp, 1);
238 p->suggest_barcode(4);
239 prod_vtx->add_particle_out(p);
240
241 log << MSG::DEBUG << "check point 5" << endreq;
242 //photons
243 int id_cntr = 5;
244 for (int i=0;i<babayagainitint_.ng;i++) {
245 double px = event_mom_.qph[1][i];
246 double py = event_mom_.qph[2][i];
247 double pz = -1.*event_mom_.qph[3][i];
248 double eph = event_mom_.qph[0][i];
249 p = new GenParticle(CLHEP::HepLorentzVector(px,py,pz,eph), 22, 1);
250 p->suggest_barcode(id_cntr);
251 prod_vtx->add_particle_out(p);
252 id_cntr++;
253 }
254
255 log << MSG::DEBUG << "check point 6" << endreq;
256 if (!unw){ //Add dummy particle with diffential cross section as mass
257 p = new GenParticle(CLHEP::HepLorentzVector(0,0,0,weights_.sdif), 99, 1);
258 p->suggest_barcode(id_cntr);
259 prod_vtx->add_particle_out(p);
260 id_cntr++;
261 }
262
263 if( log.level() <= MSG::DEBUG ){
264 evt->print();
265 }
266
267 // Check if the McCollection already exists
268 SmartDataPtr<McGenEventCol> anMcCol(eventSvc(), "/Event/Gen");
269 if (anMcCol!=0){
270 // Add event to existing collection
271 log<<MSG::WARNING<<"add event"<<endreq;
272 MsgStream log(messageService(), name());
273 log << MSG::INFO << "Add McGenEvent to existing collection" << endreq;
274 McGenEvent* mcEvent = new McGenEvent(evt);
275 anMcCol->push_back(mcEvent);
276 } else {
277 // Create Collection and add to the transient store
278 log<<MSG::WARNING<<"create collection"<<endreq;
279 McGenEventCol *mcColl = new McGenEventCol;
280 McGenEvent* mcEvent = new McGenEvent(evt);
281 mcColl->push_back(mcEvent);
282 StatusCode sc = eventSvc()->registerObject("/Event/Gen",mcColl);
283 if (sc != StatusCode::SUCCESS) {
284 log << MSG::ERROR << "Could not register McGenEvent" << endreq;
285 delete mcColl;
286 delete evt;
287 delete mcEvent;
288 return StatusCode::FAILURE;
289 } else {
290 log << MSG::INFO << "McGenEventCol created!" << endreq;
291 }
292 }
293
294
295 log<<MSG::DEBUG<< "before execute() return"<<endreq;
296 return StatusCode::SUCCESS;
297
298}
struct @363256214333150134303037351143026113364271126245 momentainitial_
double p1[4]
void generate_event_(bool &use_unweighted)
struct @057027206004162011053321026341137365177113276162 event_mom_
double p2[4]
struct @026173277112124265060176162144124214021335260256 weights_
struct @012127344050317246235203007042135233025124047270 babayagainitint_
ObjectVector< McGenEvent > McGenEventCol
Definition McGenEvent.h:39
IMessageSvc * msgSvc()
double double double * p4
Definition qcdloop1.h:77
double double * p3
Definition qcdloop1.h:76

◆ finalize()

StatusCode BabayagaNLO::finalize ( )

Definition at line 300 of file BabayagaNLO.cxx.

300 {
301 MsgStream log(msgSvc(), name());
302 log << MSG::INFO << "BabayagaNLO in finalize()" << endreq;
303
305 return StatusCode::SUCCESS;
306}
void print_statistics_()

◆ initialize()

StatusCode BabayagaNLO::initialize ( )

Definition at line 120 of file BabayagaNLO.cxx.

120 {
121 MsgStream log(msgSvc(), name());
122 log << MSG::DEBUG << "BabayagaNLO in initialize()" << endreq;
123
124 //set Bes unified random engine
125 static const bool CREATEIFNOTTHERE(true);
126 StatusCode RndmStatus = service("BesRndmGenSvc", p_BesRndmGenSvc, CREATEIFNOTTHERE);
127 if (!RndmStatus.isSuccess() || 0 == p_BesRndmGenSvc)
128 {
129 log << MSG::ERROR << " Could not initialize Random Number Service" << endreq;
130 return RndmStatus;
131 }
132 CLHEP::HepRandomEngine* engine = p_BesRndmGenSvc->GetEngine("BabayagaNLO");
134
135
136 //start initialize
137 int xpari[10];
138 double xpard[14];
139
140 xpari[kChannel]=m_ch;
141 xpari[kVerbose]=m_iverbose;
142 xpari[kNsearch]=m_nsearch;
143 xpari[kAlphaRun]=m_arun;
144 xpari[kPhMode]=m_photmode;
145 xpari[kModelVP]=m_iteubn;
146 xpari[kPrecision]=m_precision;
147 xpari[kUseWeighted]=m_weighted;
148 xpari[kDarkMode]=m_darkmode;
149
150 xpard[kEcm]=m_ecmsinput;
151 xpard[kEspread]=m_beamspread;
152 xpard[kCutTh0]=m_thmin;
153 xpard[kCutTh1]=m_thmax;
154 xpard[kCutAColl]=m_zmax;
155 xpard[kCutEmin]=m_emin;
156 xpard[kCutInvMass0]=m_Minv_min;
157 xpard[kCutInvMass1]=m_Minv_max;
158 xpard[kDarkMass]=m_DarkMass;
159 xpard[kDarkWidth]=m_DarkWidth;
160 xpard[kDarkVec]=m_DarkVec;
161 xpard[kDarkAx]=m_DarkAxial;
162 xpard[kMaxSdif]=m_sdif_max;
163 xpard[kScaleVPerr]=m_scale_vperr;
164
165 using namespace boost::filesystem;
166 path p_nskfile (m_nsk_filepath.data());
167 if (!exists(p_nskfile) && m_arun>0 && m_iteubn==2){
168 log <<MSG::FATAL<<"Cannot find Novosibirsk VP file ("<<p_nskfile.native()<<")!\n Is the environment variable BABAYAGANLOROOT set?"<<endreq;
169 return StatusCode::FAILURE;
170 }
171
172 m_nsk_filepath = p_nskfile.native();
173 strcpy(vpcnskf_.nskfilepath,m_nsk_filepath.data());
174
175 bossinterface_(xpari,xpard);
176
178
179 log <<MSG::DEBUG<< "Finish BabayagaNLO initialize()" <<endreq;
180 return StatusCode::SUCCESS;
181}
void init_babayaga_()
struct @273134041027321331252364112143300176263025172264 vpcnskf_
void bossinterface_(int *xpari, double *xpard)
static void setRandomEngine(CLHEP::HepRandomEngine *randomEngine)

The documentation for this class was generated from the following files: