Ignore:
Timestamp:
05/10/12 13:29:26 (12 years ago)
Author:
Jens Buss
Message:
added function CsvFileName
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/rootmacros/PulseTemplates/pixel.C

    r13627 r13636  
    852852}
    853853
     854TString
     855Pixel::CsvFileName(
     856        TString     path,
     857        TString     overlayMethod,
     858        int         order
     859        )
     860{
     861    path += "CSV/";
     862    path += overlayMethod;
     863    path += "OverlayTemplate";
     864    path += "_";
     865    path +=   mChid;
     866    path +=   "_";
     867    path +=   order;
     868    path +=   ".csv";
     869    return path;
     870}
    854871
    855872
Note: See TracChangeset for help on using the changeset viewer.