thepeg is hosted by Hepforge, IPPP Durham
ThePEG 2.3.0
AITreeFactory.h
1// -*- C++ -*-
2//
3// AITreeFactory.h is a part of ThePEG - Toolkit for HEP Event Generation
4// Copyright (C) 1999-2019 Leif Lonnblad
5//
6// ThePEG is licenced under version 3 of the GPL, see COPYING for details.
7// Please respect the MCnet academic guidelines, see GUIDELINES for details.
8//
9#ifndef LWH_AITreeFactory_H
10#define LWH_AITreeFactory_H
11
12
13
14#include <string>
15
18namespace AIDA {
19
20class ITree;
21
22class ITreeFactory {
23
24public:
25
26 virtual ~ITreeFactory() {}
27
28 virtual ITree * create(const std::string &, const std::string & = "",
29 bool = false, bool = false,
30 const std::string & = "") = 0;
31
32};
33
34}
35
42#endif /* LWH_AITreeFactory_H */