Fork me on GitHub

Changeset 260 in svn for trunk


Ignore:
Timestamp:
Feb 9, 2009, 3:37:19 PM (16 years ago)
Author:
severine ovyn
Message:

add header

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***********************************************************************/
    1031
    1132/// \file Delphes.cpp
     
    99120cout <<"**                 of a  generic collider experiment               **"<< endl;
    100121cout <<"**                                                                 **"<< endl;
    101 cout <<"**                --- Version 1.3beta of Delphes ---               **"<< endl;
    102 cout <<"**               Last date of change: 29 January 2009              **"<< endl;
     122cout <<"**                --- Version 1.4beta of Delphes ---               **"<< endl;
     123cout <<"**               Last date of change: 9 February 2009              **"<< endl;
    103124cout <<"**                                                                 **"<< endl;
    104125cout <<"**                                                                 **"<< endl;
     
    107128cout <<"**     FastJet algorithm: Phys. Lett. B641 (2006) [hep-ph/0512210] **"<< endl;
    108129cout <<"**     Hector: JINST 2:P09005 (2007) [physics.acc-ph:0707.1198v2]  **"<< endl;
    109 cout <<"**     FROG:                                                       **"<< endl;
     130cout <<"**     FROG:                               [hep-ex/0901.2718v1]    **"<< endl;
    110131cout <<"**                                                                 **"<< endl;
    111132cout <<"**-----------------------------------------------------------------**"<< endl;
     
    330351      treeReader->ReadEntry(entry);
    331352      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       }
    337353     
    338354      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
    133#include <iostream>
    234#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***********************************************************************/
    1331
    1432#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***********************************************************************/
    1031
    1132/// \file Trigger_Only.cpp
  • trunk/Examples/interface/Analysis_Ex.h

    r227 r260  
    11#ifndef ANALYSIS_EX_H
    22#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
    335
    436#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
    133#include "Examples/interface/Analysis_Ex.h"
    234#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
    133#include "Examples/interface/Analysis_Ex.h"
    234
  • 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***********************************************************************/
    1331
    1432#include "TChain.h"
     
    2947#include "JetsUtil.h"
    3048#include "BFieldProp.h"
    31 
    32 //#include "PseudoJet.hh"
    33 //#include "ClusterSequence.hh"
    3449
    3550#include<vector>
     
    367382      TRootJet *jet;
    368383      itJet.Reset();
    369 //cout<<"a"<<endl;
    370384      while( (jet = (TRootJet*) itJet.Next()) )
    371385        {
    372 //cout<<"b"<<endl;
    373386          TLorentzVector JETT(0,0,0,0);
    374387          JETT.SetPxPyPzE(jet->Px,jet->Py,jet->Pz,jet->E);
    375388          if(fabs(JETT.Eta()) < (DET->CEN_max_tracker - DET->TAU_track_scone))
    376389           {
    377 //cout<<"c"<<endl;
    378390            for(Int_t i=0; i<TausHadr.GetEntries();i++)
    379391              {
    380 //cout<<"d"<<endl;
    381392                if(DeltaR(TausHadr[i]->Phi,TausHadr[i]->Eta,JETT.Phi(),JETT.Eta())<0.1)
    382393                  {
    383 //cout<<"e"<<endl;
    384394                    elementTaujet= (TAUHAD*) branchtaujet->NewEntry();
    385395                    elementTaujet->EnergieCen = (EnergySmallCone(towers,JETT.Eta(),JETT.Phi(),DET->TAU_energy_scone,DET->JET_seed)/JETT.E());
     
    387397                    if( (EnergySmallCone(towers,JETT.Eta(),JETT.Phi(),DET->TAU_energy_scone,DET->JET_seed)/JETT.E()) > 0.95
    388398                     &&  (NumTracks(branchTracks,DET->TAU_track_pt,JETT.Eta(),JETT.Phi(),DET->TAU_track_scone))==1)numTauRec++;
    389 //cout<<"f"<<endl;
    390399                   
    391400                 }
    392 //cout<<"g"<<endl;
    393401              }
    394402           }
    395 //cout<<"h"<<endl;
    396403         
    397404       
    398405      } // for itJet : loop on all jets
    399 //cout<<"i"<<endl;
    400406     
    401407      treeWriter->Fill();
    402408    } // Loop over all events
    403409  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;
    407413
    408414  cout << "** Exiting..." << endl;
  • trunk/interface/BFieldProp.h

    r248 r260  
    22#define _BFIELD_PROP_H_
    33
    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***********************************************************************/
    1334
    1435#include "TLorentzVector.h"
  • trunk/interface/DataConverter.h

    r2 r260  
    22#define _DATACONVERTER_H_
    33
    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***********************************************************************/
    1334
    1435/// \file DataConverter
  • trunk/interface/FrogUtil.h

    r223 r260  
    22#define _FROGUTIL_H_
    33
    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***********************************************************************/
    1334
    14 /// \file SmearUtil.h
    15 /// \brief RESOLution class, and some generic definitions
    1635
    1736#include "SmearUtil.h"
  • trunk/interface/HEPEVTConverter.h

    r220 r260  
    22#define _HEPEVTCONVERTER_H_
    33
    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***********************************************************************/
    1334
    14 /// \file SmearUtil.h
    15 /// \brief HEPEVTConverter class, and some generic definitions
    1635#include <deque>
    1736
  • trunk/interface/JetsUtil.h

    r215 r260  
    22#define _JETSUTIL_H_
    33
    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***********************************************************************/
    1634
    1735
  • trunk/interface/LHEFConverter.h

    r220 r260  
    22#define _LHEFCONVERTER_H_
    33
    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***********************************************************************/
    1334
    1435/// \file LHEFConverter
  • trunk/interface/STDHEPConverter.h

    r220 r260  
    22#define _STDHEPCONVERTER_H_
    33
    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***********************************************************************/
    1634
    1735
  • trunk/interface/SmearUtil.h

    r257 r260  
    22#define _SMEARUTIL_H_
    33
    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***********************************************************************/
    1334
    1435/// \file SmearUtil.h
  • trunk/interface/TriggerUtil.h

    r250 r260  
    22#define _TRIGUTIL_H_
    33
    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
    1335
    1436#include <vector>
  • trunk/interface/VeryForward.h

    r241 r260  
    22#define _VERYFORWARD_H_
    33
    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***********************************************************************/
    1634
    1735
  • 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***********************************************************************/
    1031
    1132#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
    1233#include <iostream>
    1334
  • 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***********************************************************************/
    1231
    1332#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***********************************************************************/
    1031
    1132/// \file SmearUtil.cc
     
    514535 
    515536  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;
    544589  f_out<<"#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"<<"\n";
    545590  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***********************************************************************/
    1031
    1132// \brief Trigger class, and some generic definitions
     
    122143        EtmisValues.clear();
    123144        GammaValues.clear();
     145
    124146}
    125147
     
    402424  for(int i=0;i<etmis_size;i++){f_out << left << setw(5) << TriggerBit::EtmisValues[i]<<"";}f_out <<"\n";}
    403425  f_out <<"*                                                                    *"<<"\n";
    404 
    405 
     426  f_out <<"**********************************************************************"<<"\n";
    406427
    407428}
  • 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***********************************************************************/
    1031
    1132#include "VeryForward.h"
Note: See TracChangeset for help on using the changeset viewer.