/[PAMELA software]/quicklook/tracker/flight/macros/fillpedsig-main.cpp
ViewVC logotype

Contents of /quicklook/tracker/flight/macros/fillpedsig-main.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (show annotations) (download)
Wed May 10 10:05:56 2006 UTC (18 years, 6 months ago) by pam-fi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
FILE REMOVED
.cpp files of utilities removed, quicklook macros added

1 #include "fillpedsig.cpp"
2 #include <TString.h>
3
4 /**
5 * fillpedsig-main --> is the main program that call the filpedsig function
6 *
7 * autor: D.Fedele
8 * version 1.0
9 * Parameters:
10 * file - the path to the root file to analyse
11 * outdir - total path of output file
12 *
13 */
14
15 int main(int argc, char* argv[]){
16
17 TString FILE,OUTDIR="";
18
19 if(argc>1){
20 if (!strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")){
21 printf("Usage: fillpedsig FILE OUTDIR \n");
22 printf("\t FILE: path of the root file to analize (give at least this parameter) \n");
23 printf("\t OUTDIR: output directory [default = same directory of the root file] \n");
24 exit(1);
25 }
26
27 if(argc>=2){
28 for(int i=1; i<argc;i++){
29 if(i==1) FILE = argv[i];
30 else if(i==2) OUTDIR = argv[i];
31 }
32 }
33 }
34 else if(argc==1){
35 printf("Usage: fillpedsig FILE OUTDIR \n");
36 printf("\t FILE: path of the root file to analize (give at least this parameter) \n");
37 printf("\t OUTDIR: output directory [default = same directory of the root file] \n");
38 exit(1);
39 }
40
41 fillpedsig(FILE,OUTDIR);
42 }

  ViewVC Help
Powered by ViewVC 1.1.23