/* * 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 DelphesFactory * * Class handling creation of Candidate, * TObjArray and all other objects. * * \author P. Demin - UCL, Louvain-la-Neuve * */ #include "classes/DelphesFactory.h" #include "classes/DelphesClasses.h" #include "ExRootAnalysis/ExRootTreeBranch.h" #include "TClass.h" #include "TObjArray.h" using namespace std; //------------------------------------------------------------------------------ DelphesFactory::DelphesFactory(const char *name) : TNamed(name, ""), fObjArrays(0) { fObjArrays = new ExRootTreeBranch("PermanentObjArrays", TObjArray::Class(), 0); } //------------------------------------------------------------------------------ DelphesFactory::~DelphesFactory() { if(fObjArrays) delete fObjArrays; map< const TClass*, ExRootTreeBranch* >::iterator itBranches; for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches) { delete (itBranches->second); } } //------------------------------------------------------------------------------ void DelphesFactory::Clear(Option_t* option) { set::iterator itPool; for(itPool = fPool.begin(); itPool != fPool.end(); ++itPool) { (*itPool)->Clear(); } TProcessID::SetObjectCount(0); map< const TClass*, ExRootTreeBranch* >::iterator itBranches; for(itBranches = fBranches.begin(); itBranches != fBranches.end(); ++itBranches) { itBranches->second->Clear(); } } //------------------------------------------------------------------------------ TObjArray *DelphesFactory::NewPermanentArray() { TObjArray *array = static_cast(fObjArrays->NewEntry()); fPool.insert(array); return array; } //------------------------------------------------------------------------------ Candidate *DelphesFactory::NewCandidate() { Candidate *object = New(); object->SetFactory(this); TProcessID::AssignID(object); return object; } //------------------------------------------------------------------------------ TObject *DelphesFactory::New(TClass *cl) { TObject *object = 0; ExRootTreeBranch *branch = 0; map::iterator it = fBranches.find(cl); if(it != fBranches.end()) { branch = it->second; } else { branch = new ExRootTreeBranch(cl->GetName(), cl, 0); fBranches.insert(make_pair(cl, branch)); } object = branch->NewEntry(); object->Clear(); return object; } //------------------------------------------------------------------------------