]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STARLIGHT/starlight/include/starlightStandalone.h~
nbins added as data member + axes renamed
[u/mrichter/AliRoot.git] / STARLIGHT / starlight / include / starlightStandalone.h~
CommitLineData
da32329d
AM
1///////////////////////////////////////////////////////////////////////////
2//
3// Copyright 2010
4//
5// This file is part of starlight.
6//
7// starlight is free software: you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation, either version 3 of the License, or
10// (at your option) any later version.
11//
12// starlight is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with starlight. If not, see <http://www.gnu.org/licenses/>.
19//
20///////////////////////////////////////////////////////////////////////////
21//
22// File and Version Information:
23// $Rev:: 102 $: revision of last commit
24// $Author:: odjuvsla $: author of last commit
25// $Date:: 2012-10-22 23:25:54 +0200 #$: date of last commit
26//
27// Description:
28//
29//
30//
31///////////////////////////////////////////////////////////////////////////
32
33
34#ifndef STARLIGHTSTANDALONE_H
35#define STARLIGHTSTANDALONE_H
36
37
38#include <string>
39
40class upcEvent;
41
42class starlight;
43class inputParameters;
44
45
46class starlightStandalone {
47
48public:
49
50 starlightStandalone();
51 ~starlightStandalone();
52
53 bool init(); ///< reads configuration file and initializes startlight
54 bool run (); ///< creates output file and runs starlight
55
56 const std::string& configFileName () const { return _configFileName; } ///< returns path to config file
57 const std::string& eventDataFileName() const { return _eventDataFileName; } ///< returns path to output file
58
59 void setConfigFileName (const std::string& configFileName ) { _configFileName = configFileName; } ///< sets path to config file
60 void setEventDataFileName(const std::string& eventDataFileName) { _eventDataFileName = eventDataFileName; } ///< sets path to output file
61
62 void boostEvent(upcEvent &e); ///< Boost event from beam CMS to lab system
63
64private:
65
66 std::string _configFileName; ///< path to configuration file
67 std::string _eventDataFileName; ///< path to output file
68
69 starlight* _starlight; ///< pointer to starlight instance
70 inputParameters* _inputParameters; ///< pointer to parameter instance
71 unsigned int _nmbEventsTot; ///< total number of events to generate (taken from configuration file)
72 unsigned int _nmbEventsPerFile; ///< maximum number of events written to a single file (not yet implemented)
73
74};
75
76
77#endif // STARLIGHTSTANDALONE_H