ROOT logo
#ifndef __HDST_H__
#define __HDST_H__

#include "TObject.h"
#include "TString.h"


class HDst : public TObject {

public:

    HDst(){;}
    ~HDst(){;}

    static void setupSpectrometer    (TString beamtime ,Int_t mdcsetup[6][4],TString detectors = "rich,mdc,tof,rpc,shower,wall,tbox,start");
    static void setupParameterSources(TString parsource = "oracle",TString asciiParFile = "",TString rootParFile = "", TString histDate="now");
    static void setDataSource        (Int_t sourceType = -1,TString inDir = "",TString inFile = "", Int_t refId = -1 ,TString eventbuilder = "lxhadeb02.gsi.de");
    static void setSecondDataSource  (TString inDir = "",TString inFile = "", Int_t refId = -1);
    static void setupUnpackers       (TString beamtime = "aug11",TString detectors = "rich,mdc,tof,rpc,shower,wall,tbox,latch,start",Bool_t correctINL=kTRUE);

    ClassDef(HDst,0)
};

#endif //__HDst_H__
 hdst.h:1
 hdst.h:2
 hdst.h:3
 hdst.h:4
 hdst.h:5
 hdst.h:6
 hdst.h:7
 hdst.h:8
 hdst.h:9
 hdst.h:10
 hdst.h:11
 hdst.h:12
 hdst.h:13
 hdst.h:14
 hdst.h:15
 hdst.h:16
 hdst.h:17
 hdst.h:18
 hdst.h:19
 hdst.h:20
 hdst.h:21
 hdst.h:22
 hdst.h:23
 hdst.h:24