1 #ifndef RestCore_TRestManager
2 #define RestCore_TRestManager
4 #include <TApplication.h>
10 #include "TRestAnalysisPlot.h"
11 #include "TRestMetadata.h"
12 #include "TRestProcessRunner.h"
25 TiXmlElement* e =
fElement->FirstChildElement();
26 while (e !=
nullptr) {
27 std::string value = e->Value();
28 if (value ==
"variable" || value ==
"myParameter" || value ==
"constant") {
29 e = e->NextSiblingElement();
33 e = e->NextSiblingElement();
38 Int_t
ReadConfig(std::string keydeclare, TiXmlElement* e);
40 void InitFromTask(std::string taskName, std::vector<std::string> arguments);
Managing applications and executing tasks.
TRestMetadata * GetMetadataClass(std::string type)
Get the application metadata class, according to the type.
void Initialize() override
Set the class name as section name during initialization.
int LoadSectionMetadata() override
This method does some preparation of xml section.
std::vector< TRestMetadata * > fMetaObjects
app-like metadata objects
void InitFromConfigFile() override
To make settings from rml file. This method must be implemented in the derived class.
Int_t ReadConfig(std::string keydeclare, TiXmlElement *e)
Respond to the input xml element.
void PrintMetadata() override
PrintMetadata of this class.
ClassDefOverride(TRestManager, 1)
Call CINT to generate streamers for this class.
TRestMetadata * GetMetadata(std::string name)
Get the application metadata class, according to the name.
Running the processes efficiently with fantastic display.
Data provider and manager in REST.