Go to the documentation of this file.00001
00002 #include <iostream>
00003
00004 #include "GeneratorInterface/Pythia6Interface/interface/Pythia6Service.h"
00005
00006 #include "GeneratorInterface/ExternalDecays/interface/TauolaInterface.h"
00007 #include "GeneratorInterface/ExternalDecays/interface/TauolaWrapper.h"
00008
00009 #include "FWCore/ServiceRegistry/interface/Service.h"
00010 #include "FWCore/Utilities/interface/RandomNumberGenerator.h"
00011
00012 #include "HepMC/GenEvent.h"
00013 #include "HepMC/IO_HEPEVT.h"
00014 #include "HepMC/HEPEVT_Wrapper.h"
00015
00016 #include "SimGeneral/HepPDTRecord/interface/ParticleDataTable.h"
00017
00018 #include "GeneratorInterface/ExternalDecays/interface/DecayRandomEngine.h"
00019
00020 using namespace gen;
00021 using namespace edm;
00022 using namespace std;
00023
00024 extern "C" {
00025
00026 void ranmar_( float *rvec, int *lenv )
00027 {
00028
00029 for(int i = 0; i < *lenv; i++)
00030 *rvec++ = decayRandomEngine->flat();
00031
00032 return;
00033
00034 }
00035
00036 void rmarin_( int*, int*, int* )
00037 {
00038
00039 return;
00040
00041 }
00042
00043 }
00044
00045
00046
00047
00048
00049
00050
00051
00052 TauolaInterface::TauolaInterface( const ParameterSet& pset )
00053 : fIsInitialized(false)
00054 {
00055 fPy6Service = new Pythia6Service;
00056
00057 fPolarization = pset.getParameter<bool>("UseTauolaPolarization") ? 1 : 0 ;
00058
00059
00060
00061 ki_taumod_.pjak1 = -1;
00062 ki_taumod_.pjak2 = -1;
00063 ki_taumod_.mdtau = -1;
00064
00065
00066
00067 ParameterSet cards = pset.getParameter< ParameterSet >("InputCards");
00068 ki_taumod_.pjak1 = cards.getParameter< int >( "pjak1" );
00069 ki_taumod_.pjak2 = cards.getParameter< int >( "pjak2" );
00070 ki_taumod_.mdtau = cards.getParameter< int >( "mdtau" );
00071
00072 }
00073
00074 TauolaInterface::~TauolaInterface()
00075 {
00076 delete fPy6Service;
00077 }
00078
00079 void TauolaInterface::init( const edm::EventSetup& es )
00080 {
00081
00082 if ( fIsInitialized ) return;
00083
00084 if ( ki_taumod_.mdtau <= -1 )
00085 return ;
00086
00087 fPDGs.push_back( 15 ) ;
00088 es.getData( fPDGTable ) ;
00089
00090 cout << "----------------------------------------------" << endl;
00091 cout << "Initializing Tauola" << endl;
00092 if ( fPolarization == 0 )
00093 {
00094 cout << "Tauola: Polarization disabled" << endl;
00095 }
00096 else if ( fPolarization == 1 )
00097 {
00098 cout << "Tauola: Polarization enabled" << endl;
00099 }
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113 int mode = -2;
00114 taurep_( &mode ) ;
00115 mode = -1;
00116
00117
00118
00119
00120
00121
00122 fPy6Service->call( tauola_srs_, &mode, &fPolarization );
00123
00124 fIsInitialized = true;
00125
00126 return;
00127 }
00128
00129 HepMC::GenEvent* TauolaInterface::decay( HepMC::GenEvent* evt )
00130 {
00131
00132
00133
00134 HepMC::IO_HEPEVT conv;
00135
00136 if ( !fIsInitialized ) return conv.read_next_event();
00137
00138
00139
00140
00141 Pythia6Service::InstanceWrapper pythia6InstanceGuard( fPy6Service );
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157 int numPartBeforeTauola = HepMC::HEPEVT_Wrapper::number_entries();
00158
00159
00160 int mode = 0;
00161
00162 fPy6Service->call( tauola_srs_, &mode, &fPolarization );
00163
00164 int numPartAfterTauola = HepMC::HEPEVT_Wrapper::number_entries();
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175 bool foundTau = false;
00176 for ( int ip=1; ip<=numPartAfterTauola; ip++ )
00177 {
00178 if ( std::abs( HepMC::HEPEVT_Wrapper::id( ip ) ) == 15
00179 && HepMC::HEPEVT_Wrapper::status( ip ) != 3 )
00180 {
00181 foundTau = true;
00182 break;
00183 }
00184 }
00185
00186 if ( !foundTau )
00187 {
00188
00189
00190
00191 return conv.read_next_event();
00192 }
00193
00194 std::vector<int> PrntIndx;
00195
00196 for ( int ip=numPartAfterTauola; ip>numPartBeforeTauola; ip-- )
00197 {
00198
00199
00200
00201 PrntIndx.clear();
00202 int Prnt = HepMC::HEPEVT_Wrapper::first_parent(ip);
00203 ip -= (HepMC::HEPEVT_Wrapper::number_children(Prnt)-1);
00204 PrntIndx.push_back( Prnt );
00205 while ( abs( HepMC::HEPEVT_Wrapper::id(Prnt) ) != 15 )
00206 {
00207 int Prnt1 = HepMC::HEPEVT_Wrapper::first_parent( Prnt );
00208 Prnt = Prnt1;
00209
00210 PrntIndx.insert( PrntIndx.begin(), Prnt );
00211 ip -= HepMC::HEPEVT_Wrapper::number_children(Prnt);
00212 }
00213 for ( size_t iprt=0; iprt<PrntIndx.size(); iprt++ )
00214 {
00215 int Indx = PrntIndx[iprt];
00216 int PartID = HepMC::HEPEVT_Wrapper::id( Indx );
00217 const HepPDT::ParticleData*
00218 PData = fPDGTable->particle(HepPDT::ParticleID(abs(PartID))) ;
00219
00220
00221
00222 float prob = 0.;
00223 int length=1;
00224 ranmar_(&prob,&length);
00225 double lifetime = PData->lifetime().value();
00226
00227
00228
00229
00230 double ct = -lifetime * std::log(prob);
00231
00232 double ee = HepMC::HEPEVT_Wrapper::e( Indx );
00233 double px = HepMC::HEPEVT_Wrapper::px( Indx );
00234 double py = HepMC::HEPEVT_Wrapper::py( Indx );
00235 double pz = HepMC::HEPEVT_Wrapper::pz( Indx );
00236
00237 double mass = HepMC::HEPEVT_Wrapper::m( Indx );
00238
00239
00240
00241
00242 double VxDec = HepMC::HEPEVT_Wrapper::x( Indx );
00243 VxDec += ct * (px/mass);
00244 double VyDec = HepMC::HEPEVT_Wrapper::y( Indx );
00245 VyDec += ct * (py/mass);
00246 double VzDec = HepMC::HEPEVT_Wrapper::z( Indx );
00247 VzDec += ct * (pz/mass);
00248 double VtDec = HepMC::HEPEVT_Wrapper::t( Indx );
00249 VtDec += ct * (ee/mass);
00250 for ( int idau=HepMC::HEPEVT_Wrapper::first_child( Indx );
00251 idau<=HepMC::HEPEVT_Wrapper::last_child( Indx ); idau++ )
00252 {
00253 HepMC::HEPEVT_Wrapper::set_position( idau, VxDec, VyDec, VzDec, VtDec );
00254 }
00255 }
00256 }
00257
00258 return conv.read_next_event();
00259
00260 }
00261
00262 void TauolaInterface::statistics()
00263 {
00264 int mode = 1;
00265
00266
00267 fPy6Service->call( tauola_srs_, &mode, &fPolarization );
00268 return;
00269 }
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441
00442
00443
00444
00445
00446
00447
00448
00449
00450