]> git.treefish.org Git - phys/latlib.git/blob - o815/o815.cpp
added o815
[phys/latlib.git] / o815 / o815.cpp
1 #include "o815.h"
2
3 #include <sstream>
4
5 o815::o815(int argc, char **argv, const string& _programid) {
6   long timestamp;
7
8   programid = _programid;
9
10   comargs.nmeas = 100;
11   comargs.nskip = 10;
12   comargs.nequi = 100;
13   comargs.lsize[0] = 4;
14   comargs.lsize[1] = 4;
15   comargs.obscache = make_pair("",0);
16   comargs.confcache = make_pair("",0);
17   comargs.outdir="";
18   comargs.idonly = false;
19   comargs.showjobnum = false;
20
21   MPI_Init(&argc, &argv);
22   MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
23   MPI_Comm_rank(MPI_COMM_WORLD, &rank);
24
25   paraQ = new paraq(numprocs, rank);
26
27   parseArgs(argc, argv);
28
29   if(comargs.idonly) {
30     cout << programid << headMaster() << endl << flush;
31     exit(0);
32   }
33
34   if( comargs.showjobnum ) {
35     for( int i=1; i<=paraQ->getTotalJobs(); i++ ) {
36       if( paraQ->getTotalJobs()%i == 0 ) cout << paraQ->getTotalJobs()/i << "@" << i << " ";
37     }
38     cout << endl;
39     exit(0);
40   }
41
42   if(rank==0) {
43     timestamp = time(NULL);
44     for(int idest=1; idest<numprocs; idest++)
45       MPI_Send(&timestamp, 1, MPI_LONG, idest, 123, MPI_COMM_WORLD);
46   }
47   else if(rank>0)
48     MPI_Recv(&timestamp, 1, MPI_LONG, 0, 123, MPI_COMM_WORLD, &mpiStatus);
49   
50   out = new writeout(comargs.outdir, programid+headMaster(), rank, numprocs, timestamp);
51 }
52
53 void o815::parseArgs(int argc, char **argv) {
54   int opt = 0;
55   
56   while( (opt = getopt(argc, argv, "L:N:S:E:o:O:c:C:w:i:j:")) != -1 )
57     switch(opt) {
58     case 'L':
59       listArg(comargs.lsize, 2, optarg);
60       break;
61     case 'N':
62       comargs.nmeas = atoi(optarg);
63       break;
64     case 'S':
65       comargs.nskip = atoi(optarg);
66       break;
67     case 'E':
68       comargs.nequi = atoi(optarg);
69       break;
70     case 'o':
71       comargs.obscache.first = optarg;
72       comargs.obscache.second = 1;
73       break;
74     case 'O':
75       comargs.obscache.first = optarg;
76       comargs.obscache.second = 2;
77       break;
78     case 'c':
79       comargs.confcache.first = optarg;
80       comargs.confcache.second = 1;
81       break;
82     case 'C':
83       comargs.confcache.first = optarg;
84       comargs.confcache.second = 2;
85       break;
86     case 'w':
87       comargs.outdir = optarg;
88       break;
89     case 'i':
90       comargs.idonly = atoi(optarg);
91       break;
92     case 'j':
93       comargs.showjobnum = atoi(optarg);
94       break;
95     }
96 }
97
98 void o815::listArg(int *target, int tlen, char *listarg) {
99   int nargs=0;
100   
101   for( int pos=0; pos<strlen(listarg); pos++ ) 
102     if( listarg[pos] == ':' ) nargs++;
103   
104   if(nargs==0) 
105     for(int i=0; i<tlen; i++) target[i] = atoi(listarg);
106   else
107     {
108       target[0] = atoi(strtok(listarg, ":"));
109       for(int i=0; i<nargs; i++)
110         target[i+1] = atoi(strtok(NULL, ":"));
111     }
112 }
113
114 string o815::headMaster()
115 {
116   stringstream hm;
117   
118   hm << "-L" << comargs.lsize[0] << "_" << comargs.lsize[1] << "-E" << comargs.nequi << "-S" << comargs.nskip << "-N" << comargs.nmeas 
119      << paraQ->rangeString();
120   
121   return hm.str();
122 }
123