Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-06 09:38:18

0001 // -*- C++ -*-
0002 //
0003 // AITreeFactory.h is a part of ThePEG - Toolkit for HEP Event Generation
0004 // Copyright (C) 1999-2019 Leif Lonnblad
0005 //
0006 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
0007 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
0008 //
0009 #ifndef LWH_AITreeFactory_H
0010 #define LWH_AITreeFactory_H
0011 
0012 
0013 
0014 #include <string>
0015 
0016 /** @cond DONT_DOCUMENT_STRIPPED_DOWN_AIDA_INTERFACES */
0017 
0018 namespace AIDA {
0019 
0020 class ITree;
0021 
0022 class ITreeFactory {
0023 
0024 public:
0025 
0026   virtual ~ITreeFactory() {}
0027 
0028   virtual ITree * create(const std::string &, const std::string & = "",
0029              bool = false, bool = false,
0030              const std::string & = "") = 0;
0031 
0032 };
0033 
0034 }
0035 
0036 /** @endcond */
0037 
0038 
0039 
0040 
0041 
0042 #endif /* LWH_AITreeFactory_H */