-
Consider this Python program:
```
$ cat test.py
import time
i = 0
while True:
time.sleep(1)
i+=1
print(i)
if i == 6:
import pdb; pdb.set_trace()
```
Running w…
oz123 updated
3 years ago
-
[Aus Manuels Übersichtsdokument übertragen]
> Doku zur Installation des CMS zwecks Aufgabenentwicklung verbessern bzw. Installationsprozess vereinfachen (→ podman container)
- [x] Unter https:…
-
Flask is intended only for development and gives us these warnings:
Jun 23, 2020, 8:26:17 PM | Use a production WSGI server instead.
Jun 23, 2020, 8:26:17 PM | WARNING: This is a development serve…
-
## Description
We have a site with an interactive map that we've created in a regular django app. I need to let our customer add a small text on the top of the page. I though that adding a static p…
-
The goal is to store the P2GT emulator trigger decisions in the L1Nano as done for Phase-1, e.g. having one branch `L1_SingleMu22` per trigger seed. For reference: the Phase-2L1Nano setup is here: htt…
-
The functions for the METcorrectiona and uncertainties as defined here
PhysicsTools/PatUtils/python/tools/runMETCorrectionsAndUncertainties.py
are used both in the nano and mini.
It was observed…
-
From the core sw meeting (2 March), there was a discussion to try to run from scratch if there is no dataset input. Not sure if I understand the full idea on how to deal with the situation.
In the …
-
HepMC is a HEP event record used in CMSSW. HepMC2 is currently used.
HepMC3 is a completely rewritten version. Many methods are different from HepMC2. These two records can live together in one progr…
-
optparse is used frequently in CMSSW, but has been deprecated for quite a while in Python. Migrating to argparse would enable, e.g., enforcing types for input arguments.
I initially noticed this co…
-
I'm trying to use slimit on Python 3 and get the following exception:
```
Python 3.3.3 (default, Nov 19 2013, 12:08:16)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin
Type "help", "…