Find coda files in a path list (#209)
* Add vim lint to .gitignore * Update replay scripts to search in a list of paths - NOTE: This requires the podd submodule be updated to include modifcations to the THaRun constructor that can search a pathList. - The default './raw' and './cache' pathnames that are searched here should generally be symlinks to the relevant local path on the Hall C cluster, and the /cache/mss/hallc/.../raw/ path, respectively. For example: cd hallc_replay ln -s /net/cdaq/cdaql3data/coda/data/raw raw ln -s /cache/mss/hallc/spring17/raw cache - FWIW: The batch filtering of the replay scripts was done with this perl script: cd SCRIPTS/ find . -name '*.C' -exec ./filter.pl {} \; --- filter.pl --- #!/usr/bin/perl use File::Slurp; my $file = read_file($ARGV[0]); $file =~ s/\Qchar RunFileName[100];\E\W*\Qsprintf(RunFileName, RunFileNamePattern, RunNumber);\E\W*\QTHaRun* run = new THaRun(RunFileName);\E/THaRun* run = new THaRun( pathList, Form(RunFileNamePattern, RunNumber) );/s; $file =~ s/\Qconst char* RunFileNamePattern = "\E.*?\/(.*?\.dat)";/const char* RunFileNamePattern = "$1";\n vector<TString> pathList;\n pathList.push_back(".");\n pathList.push_back(".\/raw");\n pathList.push_back(".\/cache");\n/s; write_file("$ARGV[0]", $file); ---
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- SCRIPTS/COIN/PRODUCTION/replay_production_coin.C 7 additions, 4 deletionsSCRIPTS/COIN/PRODUCTION/replay_production_coin.C
- SCRIPTS/HMS/PRODUCTION/replay_production_hms.C 7 additions, 4 deletionsSCRIPTS/HMS/PRODUCTION/replay_production_hms.C
- SCRIPTS/HMS/RASTER/replay_hms_raster_simple.C 7 additions, 4 deletionsSCRIPTS/HMS/RASTER/replay_hms_raster_simple.C
- SCRIPTS/HMS/SCALERS/replay_hms_scalers.C 7 additions, 4 deletionsSCRIPTS/HMS/SCALERS/replay_hms_scalers.C
- SCRIPTS/HMS/STACK/replay_hms.C 7 additions, 4 deletionsSCRIPTS/HMS/STACK/replay_hms.C
- SCRIPTS/HMS/TEST_STANDS/replay_hcal_test_stand.C 7 additions, 4 deletionsSCRIPTS/HMS/TEST_STANDS/replay_hcal_test_stand.C
- SCRIPTS/HMS/TEST_STANDS/replay_hcer_test_stand.C 7 additions, 4 deletionsSCRIPTS/HMS/TEST_STANDS/replay_hcer_test_stand.C
- SCRIPTS/HMS/TEST_STANDS/replay_hdc_test_stand.C 7 additions, 4 deletionsSCRIPTS/HMS/TEST_STANDS/replay_hdc_test_stand.C
- SCRIPTS/HMS/TEST_STANDS/replay_hhodo_test_stand.C 7 additions, 4 deletionsSCRIPTS/HMS/TEST_STANDS/replay_hhodo_test_stand.C
- SCRIPTS/HMS/TEST_STANDS/replay_htrig_test_stand.C 7 additions, 4 deletionsSCRIPTS/HMS/TEST_STANDS/replay_htrig_test_stand.C
- SCRIPTS/SHMS/EXAMPLES/replay_workshop_example.C 7 additions, 4 deletionsSCRIPTS/SHMS/EXAMPLES/replay_workshop_example.C
- SCRIPTS/SHMS/PRODUCTION/replay_production_shms.C 7 additions, 4 deletionsSCRIPTS/SHMS/PRODUCTION/replay_production_shms.C
- SCRIPTS/SHMS/RASTER/replay_shms_raster_simple.C 7 additions, 4 deletionsSCRIPTS/SHMS/RASTER/replay_shms_raster_simple.C
- SCRIPTS/SHMS/SCALERS/replay_shms_scalers.C 7 additions, 4 deletionsSCRIPTS/SHMS/SCALERS/replay_shms_scalers.C
- SCRIPTS/SHMS/STACK/replay_shms.C 7 additions, 4 deletionsSCRIPTS/SHMS/STACK/replay_shms.C
- SCRIPTS/SHMS/TEST_STANDS/replay_paero_test_stand.C 7 additions, 4 deletionsSCRIPTS/SHMS/TEST_STANDS/replay_paero_test_stand.C
- SCRIPTS/SHMS/TEST_STANDS/replay_pcal_test_stand.C 7 additions, 4 deletionsSCRIPTS/SHMS/TEST_STANDS/replay_pcal_test_stand.C
- SCRIPTS/SHMS/TEST_STANDS/replay_pdc_test_stand.C 7 additions, 4 deletionsSCRIPTS/SHMS/TEST_STANDS/replay_pdc_test_stand.C
- SCRIPTS/SHMS/TEST_STANDS/replay_phgcer_test_stand.C 7 additions, 4 deletionsSCRIPTS/SHMS/TEST_STANDS/replay_phgcer_test_stand.C
Loading
Please register or sign in to comment