Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Class Members | File Members

herwigpp_2.3.0.cc

Go to the documentation of this file.
00001 //example of Herwig++, generate pp -> ttbar events
00002 //by Zhonghua Qin <zhonghua.qin@desy.de> 
00003 #include "ThePEG/Repository/EventGenerator.h"
00004 #include "ThePEG/Repository/Repository.h"
00005 #include "ThePEG/Persistency/PersistentIStream.h"
00006 #include "ThePEG/Utilities/DynamicLoader.h"
00007 #include "ThePEG/EventRecord/Event.h"
00008 #include "ThePEG/EventRecord/SubProcess.h"
00009 #include "ThePEG/Handlers/XComb.h"
00010 #include "ThePEG/Handlers/EventHandler.h"
00011 #include "ThePEG/PDF/PartonExtractor.h"
00012 #include "ThePEG/PDF/PDF.h"
00013 #include "ThePEG/Vectors/HepMCConverter.h"
00014 #include "ThePEGHepMC_1.4.0.h"
00015 
00016 #include "HepMC/GenEvent.h"
00017 #include "HepMC/IO_GenEvent.h"
00018 #include "HepMC/GenEvent.h"
00019 #include "HepMC/IO_AsciiParticles.h"
00020 #include "HepMC/SimpleVector.h"
00021 
00022 #include <iostream>
00023 #include <stdio.h>
00024 #include <string>
00025 
00026 #include "TH1.h"
00027 #include "TFile.h"
00028 #include "TMath.h"
00029 #include <TCanvas.h>
00030 
00031 #include "TF1.h"
00032 #include <TH2.h>
00033 #include <TStyle.h>
00034 #include "TLegend.h"
00035 #include <TTree.h>
00036 #include <TString.h>
00037 
00038 using namespace ThePEG;
00039 
00040 // include our own classes
00041 #include "../../include/TopAnalysis.h"
00042 #include "../../include/TauAnalysis.h"
00043 #include "../../include/DiJetAnalysis.h"
00044 #include "../../include/WplusJetAnalysis.h"
00045 #include "../../include/ZAnalysis.h"
00046 #include "../../include/UEAnalysis.h"
00047 #include "../../include/EtMissAnalysis.h"
00048 #include "../../include/UserAnalysis.h"
00049 #include "readHerwigConfigFile.h"
00050 #include "../../include/Configuration.h"
00051 #include "../../include/JetFinder.h"
00052 
00053 int main(int argc, const char* argv[]) {
00054 
00055   if(argc <= 1 ) {
00056       std::cout << "Usage: " << argv[0] << " <Configuration File>" << std::endl;
00057       return 0;
00058   }
00059   
00060   
00061   Configuration* currentconfig = new Configuration();
00062   if(currentconfig->read(argv[1]))
00063       {
00064           std::cout << " ... skip !" << std::endl;
00065           return 0;
00066       }
00067 
00068   JetFinder FindJet;
00069   FindJet.Init(currentconfig->max_eta,currentconfig->min_pt);
00070   FindJet.InitJetFinder(currentconfig->coneRadius,currentconfig->overlapThreshold,currentconfig->jet_ptmin,currentconfig->lepton_ptmin,currentconfig->DeltaR_lepton_track);
00071 
00072 
00073   std::vector<baseAnalysis*> analysis;
00074 
00075   // create analysis Objects and initialize them                                                                                          
00076   if (currentconfig->dijet) {
00077     std::cout << "Adding module DiJetAnalysis" << std::endl;
00078     analysis.push_back(new DiJetAnalysis);
00079   }
00080   if (currentconfig->wplusjet) {
00081     std::cout << "Adding module WplusJetAnalysis" << std::endl;
00082     analysis.push_back(new WplusJetAnalysis);
00083   }
00084   if(currentconfig->z){
00085     std::cout << "Adding module ZAnalysis" << std::endl;
00086     analysis.push_back(new ZAnalysis);
00087   }
00088   if(currentconfig->tau){ 
00089     std::cout << "Adding module TauAnalysis" << std::endl;
00090     analysis.push_back(new TauAnalysis);
00091   }
00092   if(currentconfig->top){
00093     std::cout << "Adding module TopAnalysis" << std::endl;
00094     analysis.push_back(new TopAnalysis);
00095   }
00096   if(currentconfig->ue){
00097     std::cout << "Adding module UEAnalysis" << std::endl;
00098     analysis.push_back(new UEAnalysis);
00099   }  
00100   if(currentconfig->etmiss){
00101     std::cout << "Adding module EtMissAnalysis" << std::endl;
00102     analysis.push_back(new EtMissAnalysis);
00103   }
00104   if(currentconfig->user){
00105     std::cout << "Adding module UserAnalysis" << std::endl;
00106     analysis.push_back(new UserAnalysis);
00107   }
00108   
00109 
00110   // init requested analysis modules and jet finder
00111   for (std::vector<baseAnalysis*>::const_iterator i(analysis.begin()); i != analysis.end(); ++i) {
00112     (*i)->Init(currentconfig->max_eta,currentconfig->min_pt);
00113     (*i)->InitJetFinder(currentconfig->coneRadius,currentconfig->overlapThreshold,currentconfig->jet_ptmin,currentconfig->lepton_ptmin,currentconfig->DeltaR_lepton_track);
00114   }
00115 
00116   //Add a path to seach for dynamically linkable libraries
00117   std::cout<<"Add a path to seach for dynamically linkable libraries..."<<std::endl;
00118   ThePEG::DynamicLoader::appendPath(HWMODULEDIR);
00119   ThePEG::DynamicLoader::appendPath(THEPEGMODULEDIR);
00120   
00121   //Load a whole repository from the given file
00122   std::cout<<"Load repository from a given file..."<<std::endl;
00123   const string repopath = string(HWREPODIR) + "/HerwigDefaults.rpo";
00124   ThePEG::Repository::load(repopath);
00125 
00126   //Setup process,interpret the command in cmd and return possible messages
00127   std::cout<<"Setup process,interpret the command in cmd and return possible messages..."<<std::endl;
00128 
00129   // set random number seed (mandatory!) ... this may be overwritten by function readConfigFile
00130   char exec_command[100];
00131   sprintf(exec_command,"set LHCGenerator:RandomNumberGenerator:Seed %ld",currentconfig->rseed); 
00132   ThePEG::Repository::exec("cd /Herwig/Generators", cout);
00133   ThePEG::Repository::exec(exec_command, cout);
00134 
00135   // vector to store herwig commandlines from Configuration file
00136   std::vector< std::string > herwig_commands;
00137   // read in commandlines
00138   for (unsigned int files=0; files<(currentconfig->ConfigFileNames).size(); files++)
00139       readConfigFile(&herwig_commands,(currentconfig->ConfigFileNames)[files]);
00140 
00141   // loop over the commands
00142   for(unsigned int i=0; i<herwig_commands.size(); i++)
00143       ThePEG::Repository::exec( herwig_commands[i].c_str(), cout);
00144 
00145 //switches for FSR, ISR and MI
00146   ThePEG::Repository::exec("cd /Herwig/Shower", cout);
00147 
00148   sprintf(exec_command,"set SplittingGenerator:ISR %c",currentconfig->ISR);
00149   ThePEG::Repository::exec(exec_command, cout);
00150 
00151   sprintf(exec_command,"set SplittingGenerator:FSR %c",currentconfig->FSR);
00152   ThePEG::Repository::exec(exec_command, cout);
00153 
00154   sprintf(exec_command,"set ShowerHandler:MPI %c",currentconfig->MI);
00155   ThePEG::Repository::exec(exec_command, cout);
00156 
00157   //Check sanity of the object during the setup phase
00158   ThePEG::Repository::update();
00159 
00160  // ThePEG generator object.
00161   ThePEG::EGPtr m_hw;
00162 
00163   // ThePEG event object.
00164   ThePEG::EventPtr m_event;
00165 
00166  // Make a "run" object from the config repository.
00167   std::cout<<"make a run object ..."<<std::endl;
00168   ThePEG::EGPtr tmpEG = ThePEG::BaseRepository::GetObject<ThePEG::EGPtr>("/Herwig/Generators/LHCGenerator");
00169   m_hw = ThePEG::Repository::makeRun(tmpEG, "LHC");
00170 
00171  //Herwig++ initializing
00172   std::cout<<"Herwig++ initializing..."<<std::endl;
00173   m_hw->initialize();
00174 
00175  //Loop for events generating and fill histograms
00176   std::cout<<"Generating events and filling histograms..."<<std::endl;
00177   
00178  //Change the value of nEvent to the number of events you want to generate
00179   for (unsigned int iEvent = 0; iEvent < currentconfig->nevents; ++iEvent) {
00180 
00181  // Run the generator for one event.
00182   assert(m_hw);
00183   m_event = m_hw->shoot();
00184 
00185  // Fill HepMC event from Herwig's internally stored EventPtr.
00186  // Convert the Herwig event into the HepMC GenEvent
00187  // HepMC::GenEvent*  evt = new HepMC::GenEvent();
00188   //  ThePEG::HepMCConverter<HepMC::GenEvent>::convert(*m_event, *evt, false, ThePEG::GeV);
00189   HepMC::GenEvent*  evt= ThePEG::HepMCConverter<HepMC::GenEvent>::convert(*m_event, false, ThePEG::GeV);
00190 
00191   //call the Jetfinder
00192   vector<fastjet::PseudoJet> inclusive_jets = FindJet.GetJet(evt);
00193   
00194   //call analysis
00195   int ret_all = true;
00196   for (std::vector<baseAnalysis*>::const_iterator i(analysis.begin()); i != analysis.end(); ++i) {
00197     (*i)->SetJet(&inclusive_jets);
00198     int ret = (*i)->Process(evt);
00199     if (ret == false) ret_all = false;
00200   }
00201 
00202   if (ret_all==false) {
00203     std::cout << "Processing event number " << iEvent << std::endl;
00204     std::cout << "throw FAILURE"<<std::endl;
00205     //std::cout<<"HepMC Output"<<std::endl;
00206     //evt->print();
00207     std::cout<<std::endl;
00208   }
00209 
00210   //delete all the jet objects, missingEt etc. to be free for the next event
00211   FindJet.ClearEvent(evt);
00212 
00213   //delete event
00214   delete evt;
00215   }
00216 
00217   TFile* f = new TFile(currentconfig->OutputFileName.c_str(),"RECREATE");
00218   for (std::vector<baseAnalysis*>::const_iterator i(analysis.begin()); i != analysis.end(); ++i) {
00219     (*i)->Finalize(f);
00220   }
00221 
00222   // clean up analysis modules
00223   for (std::vector<baseAnalysis*>::const_iterator i(analysis.begin()); i != analysis.end(); ++i) {
00224     delete (*i);
00225   }
00226   analysis.resize(0);
00227 
00228   // clean up config object
00229   delete currentconfig;
00230 
00231   //Tidy up, Herwig++ finalizing
00232   std::cout<<"Herwig++ finalizing..."<<std::endl;
00233   assert(m_hw);
00234   m_hw->finalize();
00235   ThePEG::Repository::cleanup();
00236 
00237   std::cout<<"Run successfully!"<<std::endl;
00238   return 0;
00239 }

Generated on Thu Jul 23 14:57:35 2009 for HepMCAnalysis by  doxygen 1.3.9.1