/* * Delphes: a framework for fast simulation of a generic collider experiment * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /** \class DelphesModule * * Base class for all Delphes modules * * \author P. Demin - UCL, Louvain-la-Neuve * */ #include "classes/DelphesModule.h" #include "classes/DelphesFactory.h" #include "ExRootAnalysis/ExRootResult.h" #include "ExRootAnalysis/ExRootTreeBranch.h" #include "ExRootAnalysis/ExRootTreeReader.h" #include "ExRootAnalysis/ExRootTreeWriter.h" #include "TClass.h" #include "TFolder.h" #include "TObjArray.h" #include "TROOT.h" #include #include #include using namespace std; DelphesModule::DelphesModule() : fTreeWriter(0), fFactory(0), fPlots(0), fPlotFolder(0), fExportFolder(0) { } //------------------------------------------------------------------------------ DelphesModule::~DelphesModule() { } //------------------------------------------------------------------------------ void DelphesModule::Init() { } //------------------------------------------------------------------------------ void DelphesModule::Process() { } //------------------------------------------------------------------------------ void DelphesModule::Finish() { } //------------------------------------------------------------------------------ TObjArray *DelphesModule::ImportArray(const char *name) { stringstream message; TObjArray *object; object = static_cast(GetObject(Form("Export/%s", name), TObjArray::Class())); if(!object) { message << "can't access input list '" << name; message << "' in module '" << GetName() << "'"; throw runtime_error(message.str()); } return object; } //------------------------------------------------------------------------------ TObjArray *DelphesModule::ExportArray(const char *name) { TObjArray *array; if(!fExportFolder) { fExportFolder = NewFolder("Export"); } array = GetFactory()->NewPermanentArray(); array->SetName(name); fExportFolder->Add(array); return array; } //------------------------------------------------------------------------------ ExRootTreeBranch *DelphesModule::NewBranch(const char *name, TClass *cl) { stringstream message; if(!fTreeWriter) { fTreeWriter = static_cast(GetObject("TreeWriter", ExRootTreeWriter::Class())); if(!fTreeWriter) { message << "can't access access tree writer"; throw runtime_error(message.str()); } } return fTreeWriter->NewBranch(name, cl); } //------------------------------------------------------------------------------ ExRootResult *DelphesModule::GetPlots() { if(!fPlots) { fPlots = new ExRootResult(); fPlots->SetFolder(GetFolder()); } return fPlots; } //------------------------------------------------------------------------------ DelphesFactory *DelphesModule::GetFactory() { stringstream message; if(!fFactory) { fFactory = static_cast(GetObject("ObjectFactory", DelphesFactory::Class())); if(!fFactory) { message << "can't access access object factory"; throw runtime_error(message.str()); } } return fFactory; }