Bruno Alves
Bruno Alves
```python import luigi class cfg(luigi.Config): param = set([1,2]) #param = [1,2] this works d = luigi.DictParameter(default={'param': param}) mycfg = cfg() ``` The snippet above causes the error below: ```shell $...
### Discussed in https://github.com/scikit-hep/hist/discussions/252 Originally posted by **b-fontana** July 6, 2021 As discussed in the Slack channel of [PyHEP21](https://indico.cern.ch/event/1019958/) as a result of [this tutorial](https://indico.cern.ch/event/1019958/contributions/4420290/), it would be very nice...
I'm using ```pylhe``` for looping on several LHE files, each containing 100K events. Running the snippet below on a lxplus machine (CentOS Linux release 7.9.2009), one can see that iterations...
Added an option to create a new branch before cherry-picking. This is quite a common operation, for instance whenever starting from a clean release, in order not to loose the...
When running (at least some) `phase2` workflows, the default `auto:phase2_realistic_T33` (using `T33` as an example) is concatenated to the `_13TeV` string, as done [here](https://github.com/cms-sw/cmssw/blob/master/Configuration/PyReleaseValidation/python/relval_steps.py#L4838). This happens since all `phase2` workflows...
The following [operation](https://github.com/cms-sw/cmssw/blob/57ccb0fc0116baea5a265ace8637d291559ac95d/SimTracker/VertexAssociation/src/calculateVertexSharedTracks.cc#L40) returns ```false```, even when both the ```.key()``` and the ```.id()``` are the same. In other words, when using ``` return tk.first == vtk ``` instead of ```...
CMSSW currently includes both the `CloseByPGun` and `CloseByParticleGun` naming for configurations produced with the [CloseByParticleGunProducer](https://github.com/cms-sw/cmssw/blob/d229fece154f10d622a2d913cda332d6875bea27/IOMC/ParticleGuns/src/CloseByParticleGunProducer.cc). The former tends to be used in the barrel, while the latter tends to be...