Last change
on this file since 3776 was 3776, checked in by ansari, 15 years ago |
Ajout classes / modification pour permettre le calcul des visibilites ave plusieurs objets BRVisibilityCalculator s'executant en parallele, Reza 18/05/2010
|
File size:
1.2 KB
|
Line | |
---|
1 | #ifndef BRANAPARAM
|
---|
2 | #define BRANAPARAM
|
---|
3 |
|
---|
4 | //--------------------------------------------------------------
|
---|
5 | // Projet BAORadio - (C) LAL/IRFU 2008-2010
|
---|
6 | // Classe de gestion des parametres programmes d'analyse
|
---|
7 | //--------------------------------------------------------------
|
---|
8 |
|
---|
9 | #include "machdefs.h"
|
---|
10 |
|
---|
11 | #include <string>
|
---|
12 | #include <vector>
|
---|
13 | #include <iostream>
|
---|
14 |
|
---|
15 | class BRAnaParam {
|
---|
16 | public:
|
---|
17 | BRAnaParam(uint_4 nmean=1000, uint_4 nzon=4, uint_4 npaqz=128);
|
---|
18 | int DecodeArgs(int narg, char* arg[]);
|
---|
19 | int Usage(bool fgshort);
|
---|
20 |
|
---|
21 | int PaqSizeFromFits();
|
---|
22 |
|
---|
23 | uint_8 TotalNPaquets() { return ((imax_-imin_+1)*npaqinfile_/istep_); }
|
---|
24 |
|
---|
25 | ostream& Print(ostream& os);
|
---|
26 |
|
---|
27 | static int DecodeMiniFitsHeader(const char* filename, uint_4& paqsz, uint_4& npaq);
|
---|
28 |
|
---|
29 | vector<string> dirlist_;
|
---|
30 | string action_;
|
---|
31 | string outpath_;
|
---|
32 | uint_4 nmean_;
|
---|
33 | uint_4 nbloc_;
|
---|
34 | uint_4 imin_, imax_, istep_;
|
---|
35 | uint_4 freqmin_, freqmax_, nbinfreq_;
|
---|
36 | uint_4 paqsize_;
|
---|
37 | uint_4 nzones_, npaqinzone_;
|
---|
38 | uint_4 npaqinfile_; // nombre de paquets dans un fichier p
|
---|
39 | int prtlevel_;
|
---|
40 | uint_4 nbcalgrp_; // Nb d'objets/threads dans BRVisCalcGroup
|
---|
41 | uint_4 nthreads_; // Nb de threads pour l'execution parallele ds BRVisibilityCalculator
|
---|
42 | };
|
---|
43 |
|
---|
44 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.