/usr/include/root/TGridJDL.h is in libroot-net-dev 5.34.19+dfsg-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | // @(#)root/net:$Id$
// Author: Jan Fiete Grosse-Oetringhaus 28/9/2004
// Jancurova.lucia@cern.ch Slovakia 29/9/2008
/*************************************************************************
* Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TGridJDL
#define ROOT_TGridJDL
//////////////////////////////////////////////////////////////////////////
// //
// TGridJDL //
// //
// Abstract base class to generate JDL files for job submission to the //
// Grid. //
// //
// Related classes are TGLiteJDL //
// . //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifndef ROOT_TMap
#include "TMap.h"
#endif
class TGridJDL : public TObject {
protected:
TMap fMap; // stores the key, value pairs of the JDL
TMap fDescriptionMap; // stores the key, value pairs of the JDL
public:
TGridJDL() : fMap(), fDescriptionMap() { }
virtual ~TGridJDL();
void SetValue(const char *key, const char *value);
const char *GetValue(const char *key);
void SetDescription(const char *key, const char *description);
const char *GetDescription(const char *key);
TString AddQuotes(const char *value);
void AddToSet(const char *key, const char *value);
void AddToSetDescription(const char *key, const char *description);
virtual TString Generate();
virtual void Clear(const Option_t* = 0);
virtual void SetExecutable(const char *value=0, const char *description=0) = 0;
virtual void SetArguments(const char *value=0, const char *description=0) = 0;
virtual void SetEMail(const char *value=0, const char *description=0) = 0;
virtual void SetOutputDirectory(const char *value=0, const char *description=0) = 0;
virtual void SetPrice(UInt_t price=1, const char *description=0) = 0;
virtual void SetTTL(UInt_t ttl=72000, const char *description=0) = 0;
virtual void SetJobTag(const char *jobtag=0, const char *description=0) = 0;
virtual void SetInputDataListFormat(const char *format="xml-single", const char *description=0) = 0;
virtual void SetInputDataList(const char *list="collection.xml", const char *description=0) = 0;
virtual void SetSplitMode(const char *value, UInt_t maxnumberofinputfiles=0,
UInt_t maxinputfilesize=0, const char *d1=0,
const char *d2=0, const char *d3=0) = 0;
virtual void SetSplitArguments(const char *splitarguments=0, const char *description=0) = 0;
virtual void SetValidationCommand(const char *value, const char *description=0) = 0;
virtual void AddToInputSandbox(const char *value=0, const char *description=0) = 0;
virtual void AddToOutputSandbox(const char *value=0, const char *description=0) = 0;
virtual void AddToInputData(const char *value=0, const char *description=0) = 0;
virtual void AddToInputDataCollection(const char *value=0, const char *description=0) = 0;
virtual void AddToRequirements(const char *value=0, const char *description=0) = 0;
virtual void AddToPackages(const char *name="AliRoot", const char *version="default",
const char *type="VO_ALICE", const char *description=0) = 0;
virtual void AddToOutputArchive(const char *value=0, const char *description=0) = 0;
ClassDef(TGridJDL,1) // ABC defining interface JDL generator
};
#endif
|