#ifndef TRACERSA_H
#define TRACERSA_H

#include <string>

#include "Rtypes.h"

class TracerSA {
    public:
        TracerSA(const char* scope);
        ~TracerSA();

    private:
        static Int_t    fPrintOffset;
        std::string     fScope;
};

#endif // TRACERSA_H
