Changeset 260 in svn
- Timestamp:
- Feb 9, 2009, 3:37:19 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Delphes.cpp
r258 r260 1 /* 2 ---- Delphes ---- 3 A Fast Simulator for general purpose LHC detector 4 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 6 Center for Particle Physics and Phenomenology (CP3) 7 Universite Catholique de Louvain (UCL) 8 Louvain-la-Neuve, Belgium 9 */ 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 ***********************************************************************/ 10 31 11 32 /// \file Delphes.cpp … … 99 120 cout <<"** of a generic collider experiment **"<< endl; 100 121 cout <<"** **"<< endl; 101 cout <<"** --- Version 1. 3beta of Delphes --- **"<< endl;102 cout <<"** Last date of change: 29 January 2009 **"<< endl;122 cout <<"** --- Version 1.4beta of Delphes --- **"<< endl; 123 cout <<"** Last date of change: 9 February 2009 **"<< endl; 103 124 cout <<"** **"<< endl; 104 125 cout <<"** **"<< endl; … … 107 128 cout <<"** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **"<< endl; 108 129 cout <<"** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **"<< endl; 109 cout <<"** FROG: 130 cout <<"** FROG: [hep-ex/0901.2718v1] **"<< endl; 110 131 cout <<"** **"<< endl; 111 132 cout <<"**-----------------------------------------------------------------**"<< endl; … … 330 351 treeReader->ReadEntry(entry); 331 352 treeWriter->Clear(); 332 if((entry % 100) == 0 && entry > 0 ) {333 // cout << left << setw(52) <<"** Processing element # "<<""334 // << left << setw(15) << entry <<""335 // << right << setw(2) <<"**"<<endl;336 }337 353 338 354 electron.clear(); -
trunk/Examples/Analysis_Ex.cpp
r227 r260 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 1 33 #include <iostream> 2 34 #include <fstream> -
trunk/Examples/Frog_on_analysis_output.cpp
r225 r260 1 /* 2 ---- Delphes ---- 3 A Fast Simulator for general purpose LHC detector 4 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 6 Center for Particle Physics and Phenomenology (CP3) 7 Universite Catholique de Louvain (UCL) 8 Louvain-la-Neuve, Belgium 9 */ 10 11 /// \file Delphes.cpp 12 /// \brief executable for the Delphes 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 ***********************************************************************/ 13 31 14 32 #include "TApplication.h" -
trunk/Examples/Trigger_Only.cpp
r227 r260 1 /* 2 ---- Delphes ---- 3 A Fast Simulator for general purpose LHC detector 4 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 6 Center for Particle Physics and Phenomenology (CP3) 7 Universite Catholique de Louvain (UCL) 8 Louvain-la-Neuve, Belgium 9 */ 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 ***********************************************************************/ 10 31 11 32 /// \file Trigger_Only.cpp -
trunk/Examples/interface/Analysis_Ex.h
r227 r260 1 1 #ifndef ANALYSIS_EX_H 2 2 #define ANALYSIS_EX_H 3 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 34 3 35 4 36 #include "TObject.h" -
trunk/Examples/src/Analysis_Ex.cc
r227 r260 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 1 33 #include "Examples/interface/Analysis_Ex.h" 2 34 #include <iostream> -
trunk/Examples/src/Analysis_ExLinkDef.h
r87 r260 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 1 33 #include "Examples/interface/Analysis_Ex.h" 2 34 -
trunk/Resolutions.cpp
r258 r260 1 /* 2 ---- FastSim ---- 3 A Fast Simulator for general purpose LHC detector 4 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 6 Center for Particle Physics and Phenomenology (CP3) 7 Universite Catholique de Louvain (UCL) 8 Louvain-la-Neuve, Belgium 9 */ 10 11 /// \file Smearing.cpp 12 /// \brief executable for the FastSim 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 ***********************************************************************/ 13 31 14 32 #include "TChain.h" … … 29 47 #include "JetsUtil.h" 30 48 #include "BFieldProp.h" 31 32 //#include "PseudoJet.hh"33 //#include "ClusterSequence.hh"34 49 35 50 #include<vector> … … 367 382 TRootJet *jet; 368 383 itJet.Reset(); 369 //cout<<"a"<<endl;370 384 while( (jet = (TRootJet*) itJet.Next()) ) 371 385 { 372 //cout<<"b"<<endl;373 386 TLorentzVector JETT(0,0,0,0); 374 387 JETT.SetPxPyPzE(jet->Px,jet->Py,jet->Pz,jet->E); 375 388 if(fabs(JETT.Eta()) < (DET->CEN_max_tracker - DET->TAU_track_scone)) 376 389 { 377 //cout<<"c"<<endl;378 390 for(Int_t i=0; i<TausHadr.GetEntries();i++) 379 391 { 380 //cout<<"d"<<endl;381 392 if(DeltaR(TausHadr[i]->Phi,TausHadr[i]->Eta,JETT.Phi(),JETT.Eta())<0.1) 382 393 { 383 //cout<<"e"<<endl;384 394 elementTaujet= (TAUHAD*) branchtaujet->NewEntry(); 385 395 elementTaujet->EnergieCen = (EnergySmallCone(towers,JETT.Eta(),JETT.Phi(),DET->TAU_energy_scone,DET->JET_seed)/JETT.E()); … … 387 397 if( (EnergySmallCone(towers,JETT.Eta(),JETT.Phi(),DET->TAU_energy_scone,DET->JET_seed)/JETT.E()) > 0.95 388 398 && (NumTracks(branchTracks,DET->TAU_track_pt,JETT.Eta(),JETT.Phi(),DET->TAU_track_scone))==1)numTauRec++; 389 //cout<<"f"<<endl;390 399 391 400 } 392 //cout<<"g"<<endl;393 401 } 394 402 } 395 //cout<<"h"<<endl;396 403 397 404 398 405 } // for itJet : loop on all jets 399 //cout<<"i"<<endl;400 406 401 407 treeWriter->Fill(); 402 408 } // Loop over all events 403 409 treeWriter->Write(); 404 float frac = numTauRec/numTau;405 cout<<numTauRec<<endl;406 cout<<numTau<<endl;410 float frac = numTauRec/numTau; 411 cout<<numTauRec<<endl; 412 cout<<numTau<<endl; 407 413 408 414 cout << "** Exiting..." << endl; -
trunk/interface/BFieldProp.h
r248 r260 2 2 #define _BFIELD_PROP_H_ 3 3 4 /* 5 * ---- Delphes ---- 6 * A Fast Simulator for general purpose LHC detector 7 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 * 9 * Center for Particle Physics and Phenomenology (CP3) 10 * Universite Catholique de Louvain (UCL) 11 * Louvain-la-Neuve, Belgium 12 * */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 35 #include "TLorentzVector.h" -
trunk/interface/DataConverter.h
r2 r260 2 2 #define _DATACONVERTER_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 35 /// \file DataConverter -
trunk/interface/FrogUtil.h
r223 r260 2 2 #define _FROGUTIL_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 /// \file SmearUtil.h15 /// \brief RESOLution class, and some generic definitions16 35 17 36 #include "SmearUtil.h" -
trunk/interface/HEPEVTConverter.h
r220 r260 2 2 #define _HEPEVTCONVERTER_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 /// \file SmearUtil.h15 /// \brief HEPEVTConverter class, and some generic definitions16 35 #include <deque> 17 36 -
trunk/interface/JetsUtil.h
r215 r260 2 2 #define _JETSUTIL_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 13 14 /// \file SmearUtil.h 15 /// \brief RESOLution class, and some generic definitions 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 16 34 17 35 -
trunk/interface/LHEFConverter.h
r220 r260 2 2 #define _LHEFCONVERTER_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 35 /// \file LHEFConverter -
trunk/interface/STDHEPConverter.h
r220 r260 2 2 #define _STDHEPCONVERTER_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 13 14 /// \file SmearUtil.h 15 /// \brief HEPEVTConverter class, and some generic definitions 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 16 34 17 35 -
trunk/interface/SmearUtil.h
r257 r260 2 2 #define _SMEARUTIL_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 13 34 14 35 /// \file SmearUtil.h -
trunk/interface/TriggerUtil.h
r250 r260 2 2 #define _TRIGUTIL_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 34 13 35 14 36 #include <vector> -
trunk/interface/VeryForward.h
r241 r260 2 2 #define _VERYFORWARD_H_ 3 3 4 /* 5 ---- Delphes ---- 6 A Fast Simulator for general purpose LHC detector 7 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 8 9 Center for Particle Physics and Phenomenology (CP3) 10 Universite Catholique de Louvain (UCL) 11 Louvain-la-Neuve, Belgium 12 */ 13 14 /// \file SmearUtil.h 15 /// \brief RESOLution class, and some generic definitions 4 /*********************************************************************** 5 ** ** 6 ** /----------------------------------------------\ ** 7 ** | Delphes, a framework for the fast simulation | ** 8 ** | of a generic collider experiment | ** 9 ** \----------------------------------------------/ ** 10 ** ** 11 ** ** 12 ** This package uses: ** 13 ** ------------------ ** 14 ** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] ** 15 ** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] ** 16 ** FROG: [hep-ex/0901.2718v1] ** 17 ** ** 18 ** ------------------------------------------------------------------ ** 19 ** ** 20 ** Main authors: ** 21 ** ------------- ** 22 ** ** 23 ** Severine Ovyn Xavier Rouby ** 24 ** severine.ovyn@uclouvain.be xavier.rouby@cern ** 25 ** ** 26 ** Center for Particle Physics and Phenomenology (CP3) ** 27 ** Universite catholique de Louvain (UCL) ** 28 ** Louvain-la-Neuve, Belgium ** 29 ** ** 30 ** Copyright (C) 2008-2009, ** 31 ** All rights reserved. ** 32 ** ** 33 ***********************************************************************/ 16 34 17 35 -
trunk/src/BFieldProp.cc
r248 r260 1 /* 2 * ---- Delphes ---- 3 * A Fast Simulator for general purpose LHC detector 4 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 * 6 * Center for Particle Physics and Phenomenology (CP3) 7 * Universite Catholique de Louvain (UCL) 8 * Louvain-la-Neuve, Belgium 9 * */ 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 ***********************************************************************/ 10 31 11 32 #include "BFieldProp.h" -
trunk/src/FrogUtil.cc
r246 r260 1 /* 2 * ---- Delphes ---- 3 * A Fast Simulator for general purpose LHC detector 4 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 * 6 * Center for Particle Physics and Phenomenology (CP3) 7 * Universite Catholique de Louvain (UCL) 8 * Louvain-la-Neuve, Belgium 9 * */ 10 11 // \brief Trigger class, and some generic definitions 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 12 33 #include <iostream> 13 34 -
trunk/src/JetsUtil.cc
r215 r260 1 /* 2 * ---- Delphes ---- 3 * A Fast Simulator for general purpose LHC detector 4 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 * 6 * Center for Particle Physics and Phenomenology (CP3) 7 * Universite Catholique de Louvain (UCL) 8 * Louvain-la-Neuve, Belgium 9 * */ 10 11 // \brief Trigger class, and some generic definitions 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 ***********************************************************************/ 12 31 13 32 #include "JetsUtil.h" -
trunk/src/SmearUtil.cc
r257 r260 1 /* 2 ---- Delphes ---- 3 A Fast Simulator for general purpose LHC detector 4 S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 6 Center for Particle Physics and Phenomenology (CP3) 7 Universite Catholique de Louvain (UCL) 8 Louvain-la-Neuve, Belgium 9 */ 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 ***********************************************************************/ 10 31 11 32 /// \file SmearUtil.cc … … 514 535 515 536 ofstream f_out(LogName.c_str()); 516 517 f_out<<"#*********************************************************************"<<"\n"; 518 f_out<<"# *"<<"\n"; 519 f_out<<"# ---- DELPHES release 1.0 ---- *"<<"\n"; 520 f_out<<"# *"<<"\n"; 521 f_out<<"# A Fast Simulator for general purpose LHC detector *"<<"\n"; 522 f_out<<"# Written by S. Ovyn and X. Rouby *"<<"\n"; 523 f_out<<"# severine.ovyn@uclouvain.be *"<<"\n"; 524 f_out<<"# *"<<"\n"; 525 f_out<<"# http: *"<<"\n"; 526 f_out<<"# *"<<"\n"; 527 f_out<<"# Center for Particle Physics and Phenomenology (CP3) *"<<"\n"; 528 f_out<<"# Universite Catholique de Louvain (UCL) *"<<"\n"; 529 f_out<<"# Louvain-la-Neuve, Belgium *"<<"\n"; 530 f_out<<"# *"<<"\n"; 531 f_out<<"#....................................................................*"<<"\n"; 532 f_out<<"# *"<<"\n"; 533 f_out<<"# This package uses: *"<<"\n"; 534 f_out<<"# FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] *"<<"\n"; 535 f_out<<"# Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] *"<<"\n"; 536 f_out<<"# ExRootAnalysis *"<<"\n"; 537 f_out<<"# *"<<"\n"; 538 f_out<<"#....................................................................*"<<"\n"; 539 f_out<<"# *"<<"\n"; 540 f_out<<"# This file contains all the running parameters (detector and cuts) *"<<"\n"; 541 f_out<<"# necessary to reproduce the detector simulation *"<<"\n"; 542 f_out<<"# *"<<"\n"; 543 f_out<<"#....................................................................*"<<"\n"; 537 538 f_out <<"**********************************************************************"<< endl; 539 f_out <<"**********************************************************************"<< endl; 540 f_out <<"** **"<< endl; 541 f_out <<"** Welcome to **"<< endl; 542 f_out <<"** **"<< endl; 543 f_out <<"** **"<< endl; 544 f_out <<"** .ddddddd- lL hH **"<< endl; 545 f_out <<"** -Dd` `dD: Ll hH` **"<< endl; 546 f_out <<"** dDd dDd eeee. lL .pp+pp Hh+hhh` -eeee- `sssss **"<< endl; 547 f_out <<"** -Dd `DD ee. ee Ll .Pp. PP Hh. HH. ee. ee sSs **"<< endl; 548 f_out <<"** dD` dDd eEeee: lL. pP. pP hH hH` eEeee:` -sSSSs. **"<< endl; 549 f_out <<"** .Dd :dd eE. LlL PpppPP Hh Hh eE sSS **"<< endl; 550 f_out <<"** dddddd:. eee+: lL. pp. hh. hh eee+ sssssS **"<< endl; 551 f_out <<"** Pp **"<< endl; 552 f_out <<"** **"<< endl; 553 f_out <<"** Delphes, a framework for the fast simulation **"<< endl; 554 f_out <<"** of a generic collider experiment **"<< endl; 555 f_out <<"** **"<< endl; 556 f_out <<"** --- Version 1.3beta of Delphes --- **"<< endl; 557 f_out <<"** Last date of change: 29 January 2009 **"<< endl; 558 f_out <<"** **"<< endl; 559 f_out <<"** **"<< endl; 560 f_out <<"** This package uses: **"<< endl; 561 f_out <<"** ------------------ **"<< endl; 562 f_out <<"** FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **"<< endl; 563 f_out <<"** Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2] **"<< endl; 564 f_out <<"** FROG: L. Quertenmont, V. Roberfroid [hep-ex/0901.2718v1] **"<< endl; 565 f_out <<"** **"<< endl; 566 f_out <<"** ---------------------------------------------------------------- **"<< endl; 567 f_out <<"** **"<< endl; 568 f_out <<"** Main authors: **"<< endl; 569 f_out <<"** ------------- **"<< endl; 570 f_out <<"** **"<< endl; 571 f_out <<"** Séverine Ovyn Xavier Rouby **"<< endl; 572 f_out <<"** severine.ovyn@uclouvain.be xavier.rouby@cern **"<< endl; 573 f_out <<"** Center for Particle Physics and Phenomenology (CP3) **"<< endl; 574 f_out <<"** Universite Catholique de Louvain (UCL) **"<< endl; 575 f_out <<"** Louvain-la-Neuve, Belgium **"<< endl; 576 f_out <<"** **"<< endl; 577 f_out <<"** ---------------------------------------------------------------- **"<< endl; 578 f_out <<"** **"<< endl; 579 f_out <<"** Former Delphes versions and documentation can be found on : **"<< endl; 580 f_out <<"** http://www.fynu.ucl.ac.be/delphes.html **"<< endl; 581 f_out <<"** **"<< endl; 582 f_out <<"** **"<< endl; 583 f_out <<"** Disclaimer: this program is a beta version of Delphes and **"<< endl; 584 f_out <<"** therefore comes without guarantees. Beware of errors and please **"<< endl; 585 f_out <<"** give us your feedbacks about potential bugs **"<< endl; 586 f_out <<"** **"<< endl; 587 f_out <<"**********************************************************************"<< endl; 588 f_out <<"** **"<< endl; 544 589 f_out<<"#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"<<"\n"; 545 590 f_out<<"* *"<<"\n"; -
trunk/src/TriggerUtil.cc
r250 r260 1 /* 2 * ---- Delphes ---- 3 * A Fast Simulator for general purpose LHC detector 4 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 * 6 * Center for Particle Physics and Phenomenology (CP3) 7 * Universite Catholique de Louvain (UCL) 8 * Louvain-la-Neuve, Belgium 9 * */ 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 ***********************************************************************/ 10 31 11 32 // \brief Trigger class, and some generic definitions … … 122 143 EtmisValues.clear(); 123 144 GammaValues.clear(); 145 124 146 } 125 147 … … 402 424 for(int i=0;i<etmis_size;i++){f_out << left << setw(5) << TriggerBit::EtmisValues[i]<<"";}f_out <<"\n";} 403 425 f_out <<"* *"<<"\n"; 404 405 426 f_out <<"**********************************************************************"<<"\n"; 406 427 407 428 } -
trunk/src/VeryForward.cc
r257 r260 1 /* 2 * ---- Delphes ---- 3 * A Fast Simulator for general purpose LHC detector 4 * S. Ovyn ~~~~ severine.ovyn@uclouvain.be 5 * 6 * Center for Particle Physics and Phenomenology (CP3) 7 * Universite Catholique de Louvain (UCL) 8 * Louvain-la-Neuve, Belgium 9 * */ 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 ***********************************************************************/ 10 31 11 32 #include "VeryForward.h"
Note:
See TracChangeset
for help on using the changeset viewer.