/* * 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 . */ #ifndef DelphesBranchElement_h #define DelphesBranchElement_h #include "TColor.h" #include "TString.h" #include #include "display/DelphesCaloData.h" #include "TEveElement.h" #include "TEveTrack.h" // virtual class to represent objects from a Delphes-tree branch class DelphesBranchBase { public: DelphesBranchBase(const char* name="", const char*type="", const enum EColor color=kBlack):name_(name),type_(type),color_(color) {} virtual ~DelphesBranchBase() {}; const char* GetName() const { return (const char*)name_; } const char* GetType() const { return (const char*)type_; } enum EColor GetColor() const { return color_; } virtual const char* GetClassName() = 0; virtual void Reset() = 0; protected: TString name_; TString type_; // needed for parsing the branch later on const enum EColor color_; }; // concrete implementations. EveContainer can be a TrackList, ElementList or CaloData. template class DelphesBranchElement: public DelphesBranchBase { public: // constructor DelphesBranchElement(const char* name="", const char*type="", const enum EColor color=kBlack):DelphesBranchBase(name, type, color) { throw std::exception(); } // destructor virtual ~DelphesBranchElement() { delete data_; } // get the container (ElementList, TrackList, or CaloData) EveContainer* GetContainer() { return data_; } // resets the collection (before moving to the next event) virtual void Reset() {}; // template class name virtual const char* GetClassName() { return data_->ClassName(); } private: EveContainer* data_; }; #if !defined(__CINT__) && !defined(__CLING__) // special case for calo towers template<> DelphesBranchElement::DelphesBranchElement(const char* name, const char*type, const enum EColor color); template<> void DelphesBranchElement::Reset(); // special case for element lists template<> DelphesBranchElement::DelphesBranchElement(const char* name, const char*type, const enum EColor color); template<> void DelphesBranchElement::Reset(); // special case for track lists template<> DelphesBranchElement::DelphesBranchElement(const char* name, const char*type, const enum EColor color); template<> void DelphesBranchElement::Reset(); #endif // CINT, CLING #endif //DelphesBranchElement_h