pymc
celery.utils.pymc
average_estimators
average_estimators(base_list, list_to_add, averaged_count)
Averages estimators from two dicts
Source code in yaptide/celery/utils/pymc.py
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|
average_values
average_values(base_values, new_values, count)
Average two lists of values
Source code in yaptide/celery/utils/pymc.py
172 173 174 |
|
command_to_run_fluka
command_to_run_fluka(dir_path, task_id)
Function to create command to run FLUKA.
Source code in yaptide/celery/utils/pymc.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
command_to_run_shieldhit
command_to_run_shieldhit(dir_path, task_id)
Function to create command to run SHIELD-HIT12A.
Source code in yaptide/celery/utils/pymc.py
46 47 48 49 50 51 52 53 54 55 56 57 |
|
execute_simulation_subprocess
execute_simulation_subprocess(dir_path, command_as_list)
Function to execute simulation subprocess.
Source code in yaptide/celery/utils/pymc.py
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
get_fluka_estimators
get_fluka_estimators(dir_path)
Function to get estimators from FLUKA output files.
Source code in yaptide/celery/utils/pymc.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
get_shieldhit_estimators
get_shieldhit_estimators(dir_path)
Function to get estimators from SHIELD-HIT12A output files.
Source code in yaptide/celery/utils/pymc.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
get_tmp_dir
get_tmp_dir()
Function to get temporary directory from environment variables.
Source code in yaptide/celery/utils/pymc.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
read_file
read_file(
event,
filepath,
simulation_id,
task_id,
update_key,
timeout_wait_for_file=20,
timeout_wait_for_line=5 * 60,
next_backend_update_time=2,
logging_level=logging.WARNING,
)
Monitors log file of certain task, when new line with message matching regex appears, sends update to backend
Source code in yaptide/celery/utils/pymc.py
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
read_file_offline
read_file_offline(filepath)
Reads log file and returns number of simulated and requested primaries
Source code in yaptide/celery/utils/pymc.py
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
|
read_fluka_file
read_fluka_file(
event,
dirpath,
simulation_id,
task_id,
update_key,
timeout_wait_for_file_s=20,
timeout_wait_for_line_s=5 * 60,
next_backend_update_time_s=2,
logging_level=logging.WARNING,
)
Monitors log file of fluka task
Source code in yaptide/celery/utils/pymc.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
|
update_rng_seed_in_fluka_file
update_rng_seed_in_fluka_file(input_file, task_id)
Function to update random seed in FLUKA input file.
Source code in yaptide/celery/utils/pymc.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
|