-
Notifications
You must be signed in to change notification settings - Fork 60
/
CHANGES
1412 lines (1361 loc) · 71.3 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
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
297
298
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
3.1.3 to 3.1.5:
- Add WMCore#11896 to fix Cleanup jobs error
- Production configuration change to CMSSW_13_3_2_patch1 (#4916)
- Update config files with changes performed prepraring for HI (#4913)
- Remove the new component WorkflowUpdater (#4911)
3.1.2 to 3.1.3:
- Replay configuration for CMSSW_13_2_6_patch1 (#4901)
- Update deployment scripts (#4909)
- DeploymentID.txt debug (#4908)
- deployment scripts with modified job resubmission (#4902)
- Commissioning2024_ProductionFile (#4903)
3.1.1 to 3.1.2:
- Adding unit test for "Tier0Config" (#4899)
- Adding HIZeroBias datasets (#4900)
- Add processing version parameter to reco_config and express_config ta… (#4895)
- Production configuration change to CMSSW_13_2_6 (#4898)
- Replay configuration file for CMSSW_13_2_5_patch3 (#4891)
- Cmssw 13 2 5 patch3 deployment (#4894)
- Deploy CMSSW_13_2_5_patch3 (#4893)
- Cut AlCa producers from Forward, MinimumBias and RawPrime PDs (#4892)
- Processing version change due to HIForward scenario (#4890)
- Change of HI Production to CMSSW_13_2_5_patch2 (#4889)
- Fix aod_to_disk parameter in HIProdOfflineConfiguration.py
- Production configuration change to CMSSW_13_2_5_patch1 (#4887)
- Additional splitting of HIMinimumBias (#4886)
- CMSSW_13_2_5_patch1 replay file (#4883)
- HIForward PDs split (#4885)
- New HIMinimumBias datasets (#4879)
- Add T1 sites to siteWhitelist (#4876)
- Sync HIReplay configuration with HI Production (#4881)
- Update event scenarios (#4880)
- Add logic to handle override catalog (#4862)
- Configuration for beginning of HI Run 2023 (#4875)
- Adds setInjectLimit() patch
- Remove NanoAOD from RAW' dataset (#4872)
- Add PDs for pp-Ref menu (#4870)
- Production configuration for CMSSW_13_2_3 (#4871)
- Replay limitation on lumisections (#4850)
- Processing version changed back to 1
- Production configuration for era Run2023E, CMSSW_13_2_2 (#4867)
- Add MuonShower to Production config (#4866)
- Adding issue template (#4864)
- Add SpecialZeroBias dataset to reco config in configuration files (#4855)
3.1.0 to 3.1.1:
- Production configuration change after magnet half cycle (#4854)
- Add uploadedName to DBS3Uploader
- Add uploaderName to DBSUploader
- Add test tape subscriptions
- Include nanoaod in Tier0DataSvc (#4836)
- Production configuration for era Run2023D (#4844)
- Set secrts location before deleting database.
- Deployment scripts for 3.1.0 (#4843)
- Release change to CMSSW_13_0_7_TOTEM during TS1 (#4842)
- Push skipped streamers info into T0 Data Svc (#4841)
- Removi RAW processing version
- Nano aod addition (#4827)
- Add "@jetmet" to Muon datasets in production configuration (#4835)
- Implement CMSSW_13_0_7 in production with @jetmet in ParkingLLP datasets (#4833)
- Sync ReplayOfflineConfiguration.py with new Parking PDs
- Add Nano output to production and replay configurations (#4830)
- Procesing version change due to HCAL conditions and Repack version fix (#4826)
3.0.7 to 3.1.0:
- 2.2.0.4
- Merge pull request #4824 from LinaresToine/master
- Merge branch 'dmwm:master' into master
- Adding ParkingHH, ParkingLLP, and ParkingVBF* datasets (#4823)
- Change to processing version 2
- Change to CMSSW_13_0_6 in ReplayOfflineConfiguration.py
- Merge branch 'dmwm:master' into master
- Change to CMSSW_13_6 in ProdOfflineConfiguration.py
- Update 00_deploy_replay.sh to prevent deployments on production nodes (#4819)
- Fixed hostnames of replay nodes
- Minor improvement on updated 00_deploy_replay.sh file
- Update production Prompt GT to 130X_dataRun3_Prompt_v3 (#4820)
- Update 00_deploy_replay.sh
- Update 00_deploy_replay.sh
- Update 00_deploy_replay.sh
- Complete deploy_replay script
- Fixed name error in command hostname
- Modify to prevent wrong deployments on production machines
- Production era change to Run2023C and release CMSSW_13_0_5_patch2 (#4815)
- Update 00_patches.sh
- Roll back era change after delays in delivery of 1200b beams
- Production configuration change to CMSSW_13_0_5_patch1 (#4813)
- Update acquisition Era to Era2023C (#4811)
- add AlCaLumiPixelsCountsGated to the datasets (#4808)
- include WMCore 11502
- Update of configuration for Era 2023B (#4807)
- Add SpecialRandom PDs prod (#4805)
- Removing unused datasets (#4799)
- Production configuration change to CMSSW_13_0_3 (#4804)
- Tier0 Configuration for stable beams at injection energy (#4802)
- remove alcap0GlobalTag
- Production configuration for CRAFT and new processing version (#4798)
- Add disk subscription to MiniDAQ (#4797)
- Update 00_deploy_replay.sh
- Update 00_deploy_prod.sh
- Fix Pylint sintax errors (#4796)
- Update requirements.txt
- Update 00_patches.sh
- Production update to CMSSW_12_6_4. Adding FPIX LA PCL workflow (#4794)
- Add overrides to storage.json CMSSW version
- Replay testing CMSSW_12_6_3 for MWGR1 2023 (#4788)
- Change T2_CH_CERN_HLT to T2_CH_CERN_P5 (#4790)
- Set T2_CH_CERN_HLT in whitelist by default (#4787)
- Setting Deep flag for production RucioInjector
- Change production to CMSSW_12_4_11_patch1 (#4784)
3.0.7 to 2.2.0.4:
- Merge pull request #4824 from LinaresToine/master
- Merge branch 'dmwm:master' into master
- Adding ParkingHH, ParkingLLP, and ParkingVBF* datasets (#4823)
- Change to processing version 2
- Change to CMSSW_13_0_6 in ReplayOfflineConfiguration.py
- Merge branch 'dmwm:master' into master
- Change to CMSSW_13_0_6 in ProdOfflineConfiguration.py
- Update 00_deploy_replay.sh to prevent deployments on production nodes (#4819)
- Fixed hostnames of replay nodes
- Minor improvement on updated 00_deploy_replay.sh file
- Update production Prompt GT to 130X_dataRun3_Prompt_v3 (#4820)
- Update 00_deploy_replay.sh
- Update 00_deploy_replay.sh
- Update 00_deploy_replay.sh
- Complete deploy_replay script
- Fixed name error in command hostname
- Modify to prevent wrong deployments on production machines
- Production era change to Run2023C and release CMSSW_13_0_5_patch2 (#4815)
- Update 00_patches.sh
- Roll back era change after delays in delivery of 1200b beams
- Production configuration change to CMSSW_13_0_5_patch1 (#4813)
- Update acquisition Era to Era2023C (#4811)
- add AlCaLumiPixelsCountsGated to the datasets (#4808)
- include WMCore 11502
- Update of configuration for Era 2023B (#4807)
- Add SpecialRandom PDs prod (#4805)
- Removing unused datasets (#4799)
- Production configuration change to CMSSW_13_0_3 (#4804)
- Tier0 Configuration for stable beams at injection energy (#4802)
- remove alcap0GlobalTag
- Production configuration for CRAFT and new processing version (#4798)
- Add disk subscription to MiniDAQ (#4797)
- Update 00_deploy_replay.sh
- Update 00_deploy_prod.sh
- Fix Pylint sintax errors (#4796)
- Update requirements.txt
- Update 00_patches.sh
- Production update to CMSSW_12_6_4. Adding FPIX LA PCL workflow (#4794)
- Add overrides to storage.json CMSSW version
- Replay testing CMSSW_12_6_3 for MWGR1 2023 (#4788)
- Change T2_CH_CERN_HLT to T2_CH_CERN_P5 (#4790)
- Set T2_CH_CERN_HLT in whitelist by default (#4787)
- Setting Deep flag for production RucioInjector
- Change production to CMSSW_12_4_11_patch1 (#4784)
3.0.6 to 3.0.7:
- Merge pull request #4786 from jhonatanamado/Release3.0.7_deployment
- Update deployment scripts and patches T0 3.0.7
- Merge pull request #4785 from jhonatanamado/increase_SpecialHLTPhysics
- Add SpecialHLTPhysics* [20-31]
- Move to Run2022G (#4783)
- Add AODtoDisk parameter to dataset config (#4779)
- Fix scenario and missing alca producers (#4782)
- Production configuration for Heavy Ion 2022 (#4780)
- Add MaxFailTime fix
- Fix ErrorHandler's Max Fail time (#4771)
- Add HLT to whitelist of several PDs
- Move HcalCalIsolatedBunchSelector from Commissioning to ZB PDs (#4777)
- Add specifyStream PR to patches
- Add WMCore #11353 patch
- Add specifyStreams function (#4765)
- Change era to Run2022F (#4767)
- Merge pull request #4769 from jhonatanamado/prod_CMSSW_12_4_10
- Merge pull request #4768 from sarafiorendi/replay_12_4_10
- Update production node to use CMSSW_12_4_10
- replay for 12_4_10, update run number
- Extend express alcareco lifetime on disk to 1 year (#4766)
- Merge pull request #4764 from tvami/AddPDsToDisk
- Keep ECAL and Lumi RAW on DISK
- Merge pull request #4763 from jhonatanamado/patches_T0-3.0.6
- Update patches file T0 3.0.6
3.0.5 to 3.0.6:
- Merge pull request #4762 from jhonatanamado/deployTag_T0-3.0.6
- Change to new T0 release and update deployment tag
- Enable Prompt for Ephemeral datasets (#4761)
- Add AlCaLumiPixelsCountsUngated dataset for VdM scans (#4760)
- Update replay CMSSW_12_4_9_patch1 (#4757)
- Merge pull request #4759 from jhonatanamado/CMSSW_12_4_9_patch1
- Update production node to use CMSSW_12_4_9_patch1
- Add missing skims to prod configuration (#4758)
- Add missing physics skims to some PDs (#4756)
- Change era to Run2022E and release to CMSSW_12_4_9 (#4755)
- Merge pull request #4751 from jhonatanamado/minRun_vocms0313
- Add proper minRun
- Remove unnecessary ignoreStream calls
- Change CMSSW version to 12_4_8 (#4750)
- Merge pull request #4679 from jhonatanamado/dropping_phedex_args
- Add Rucio deletions fix to patches script
- Update 00_deploy_replay.sh
- Add patatrack site to ignore list
- Adding SpecialHLTPhysics* datasets (#4747)
- Change CMSSW version to 12_4_7 (#4746)
- Run2022D and data rebalancing (#4741)
- Merge pull request #4743 from jhonatanamado/AlCaPPS_patch
- Add AlCaPPS_Run3 to the patches file
- Change CMSSW version to 12_4_6 (#4740)
- Add raise conditions when run/stream can't be configured (#4729)
- Whitelist T2_CH_CERN_HLT for more Parking* PDs (#4736)
- Change CMSSW version to 12_4_5 (#4734)
- Fix configuration for ParkingSingleMuon* (#4731)
- Add recent patches to 3.0.5 deployment
- Update configurations for new HLT menu v1.3 (#4730)
- Merge pull request #4727 from jhonatanamado/enable_reco_ParkingDoubleElectronLowMass
- Update replay config file with the latest changes of production
- Enable prompt for ParkingDoubleElectronLowMass*
- Change Production config to CMSSW_12_4_4 (#4728)
- Use deployment ID as processing version (#4705)
- Remove AlcaPPS Express (#4725)
- Update repack job core splitting (#4724)
- Update Rucio metadata for T0 (#4723)
- Merge pull request #4722 from tvami/Run3Skims
- minRun for bookkeeping with CMSSW_12_4_3
- Update PD and skims for Run-3
- Merge pull request #4721 from jeyserma/patch-4
- Change FEVT to ALCARECO for ALCAPPS (Replay)
- Change FEVT to ALCARECO for ALCAPPS
- Merge pull request #4720 from tvami/RemoveSAMPIC
- Remove PPS SAMPIC PCL producer
- Merge pull request #4719 from tvami/RevertPPS_Scenario
- Revert the use of AlCaLumiPixels_Run3
- Merge pull request #4718 from tvami/AddPPS_Scenario
- Add AlCaPPS_Run3 scenario to T0 DB
- Merge pull request #4716 from francescobrivio/test_CMSSW_12_4_3
- Merge remote-tracking branch 'origin/master' into test_CMSSW_12_4_3
- Merge pull request #4717 from jhonatanamado/CMSSW_12_4_3
- Update replay configuration for CMSSW_12_4_3
- Update to CMSSW_12_4_3 and New Era
- Merge pull request #4714 from gpetruc/replay_12_3_7_patch1
- Update Prod CMSSW_12_3_7_patch1
- Increase TaskArchiver delay to 24 hours (replays) (#4715)
- Run 355205 for replay
- test CMSSW_12_3_7_patch1
- Increase HLTPhysics datasets in T0 config (#4712)
- Merge pull request #4711 from jhonatanamado/CMSSW_12_3_7
- Change CMSSW to CMSSW_12_3_7
- Merge pull request #4708 from tvami/AddPCL_forPPS_Run3
- Add PPS ALCARECOs and PCL wf-s
- Changing era to Run2022B (#4706)
- Dropping phedex args
3.0.4 to 3.0.5:
- Update deployment scripts T0 3.0.5 (#4703)
- Update HLT resources in deployment scripts (#4697)
- Change CMSSW to CMSSW_12_3_6 (#4701)
- Merge pull request #4700 from tvami/RemoveRECOfromDoubleMuon
- Dont write RECO for DoubleMuon PD
- Merge pull request #4699 from tvami/ChangeLumiPCCSettings
- Switch of AOD and RECO for AlCaLumiPixelsCountsPrompt
- Reduce merge delay for repack jobs
- Move ZeroBias0 PD PromptReco to HLT (#4695)
- Add retries to error code 99109 (#4696)
- Update GTs with PPS tag fix (#4694)
- Update production node to CMSSW_12_3_5_patch1 (#4691)
- Shorten unique wf name used on replays (#4690)
- Replay configuration for CMSSW_12_3_5_patch1 (#4689)
- Properly set soft timeout for Express and Repack
- Production upgrade to CMSSW_12_3_5 (#4688)
- Clean up deploy scripts and remove 0-retries error codes (#4685)
- Clean up deploy replay and remove 0 retries codes
- Production configuration update to CMSSW_12_3_4_patch3 (#4682)
- Replay to test DoubleMuonLowMass PD (#4680)
- Production configuration for Run3 May collisions (#4678)
- Replay configuration for CMSSW_12_3_2_patch1 (#4676)
- Update to CMSSW_12_3_2_patch1 (#4675)
- Decrease priority for Replays (#4671)
- Merge pull request #4672 from jhonatanamado/change_subscriptions
- Update Initial subscriptions
- Update deployment scripts (#4670)
- Production configuration update to CMSSW_12_3_2 (#4669)
3.0.3 to 3.0.4:
- Fix typo ALCALumiPixelsCountsPrompt (#4666)
- AddNewScenario (#4665)
- Merge pull request #4642 from jhonatanamado/add_ruciocontainer_lifetime
- Production configuration for splashes April 2022 (CMSSW_12_3_0) (#4663)
- Add lifetime to dataset from ConfigFile
- Add siteLocalConfig to LogCollect overrides (#4636)
- additional fix for condition upload (#4611)
- Merge pull request #4660 from jhonatanamado/CMSSW_12_2_3_patch1
- Upgrade T0 to CMSSW_12_2_3_patch1
- Merge pull request #4658 from jhonatanamado/CMSSW_12_2_3
- Update T0 configuration to use CMSSW_12_2_3
- Merge pull request #4655 from jhonatanamado/add_ctppsDQM_ZeroBias
- Add `@ctpps` dqm sequence on ZeroBias dataset
- Add cmsTalk instead of HN in the PR request template (#4651)
- Configuration for CRAFT 2022 (#4649)
- Merge pull request #4643 from jhonatanamado/addparams_blocklevel_rules
- T0 Configuration for MWGR1 of 2022. (#4645)
- Add parameters to block-level rules
3.0.2 to 3.0.3:
- Make Express and Promt memory configurable (#4638)
- Adding deployment ID to db and Tier0Config (#4632)
- Setting a 46h soft timeout for PromptReco jobs (#4600)
- Fix new AlCa datasets for collisions (#4626)
2.2.4 to 3.0.2:
- Merge pull request #4624 from germanfgv/ProdPilotBeam
- Production configuration for Pilot Beam test 2021
- Update config with Test Beam AlCa Matrix
- Merge pull request #4618 from germanfgv/NotCraftWeek
- Update deployment scripts for T0 Agent 3.0.X
- Merge pull request #4615 from germanfgv/NotCraftWeek
- Production configuration for Not-Craft-Week TWFKC
- Merge pull request #4614 from jhonatanamado/replay_test_12_0_2_patch1
- Specify deployment branch
- Create pull request template for replay tests
- Test CMSSW_12_0_2_patch1
- Merge pull request #4609 from jhonatanamado/update_prodnode_T0_2.2.4
- Update ProdConfig file
- Fix Promt GT
- Replay test with 12_1_0_pre3 (#4607)
- Merge pull request #4603 from jhonatanamado/py3v2
- Migrating T0 code from PY2 to PY3
- Merge pull request #4596 from germanfgv/sites
- Merge pull request #4599 from dmwm/CRUZET_11_3_4
- Update production CMSSW release
- Add sites configuration to easily switch storage sites
- Merge pull request #4597 from jhonatanamado/Config_Streamv4
- ConfigurableStreamMemory
- Merge pull request #4592 from dmwm/newAlCaProd
- Updating Prod config with new Cosmics AlCa producers
- Updating Replay config with new Cosmics AlCa producers
- Merge pull request #4590 from jhonatanamado/Tunning-Jobs
- Merge pull request #4582 from dmwm/condUpload
- Merge pull request #4589 from dmwm/FixSiteOverride
- Tunning LogCollect and CleanUp Jobs
- Create a list of sites intead of modifying the dataset config
- Merge pull request #4587 from dmwm/CRUZET_Prod
- Update Offline config files for Cruzet 2021
- Raise expetion when unable to upload conditions to Dropbox
- Merge pull request #4579 from dmwm/2021MWGR4_Replay
- Replay configuration used in preparation for MWGR4 of 2021
- Merge pull request #4578 from dmwm/2021MWGR4_PROD
- Production configuration for MWGR#4 of 2021
- Merge pull request #4566 from germanfgv/OverrideSiteConfig
- Using WMWorkload.setStepEnvironmentVariables to override site config
2.2.3 to 2.2.4:
- Merge pull request #4570 from dmwm/Config_MWGR3_2021
- Update ExampleConfig.py
- Update ReplayOfflineConfiguration.py
- Update RunConfig_t.py
- Fix Condition test adding missing query
- Merge pull request #4569 from dmwm/deployTag
- Add DEPLOY_TAG to replay deployment script
- Add DEPLOY_TAG todeployment scripts
- Merge pull request #4568 from jhonatanamado/master
- Production file configuration for 2021MWGR3
- Replay configuration file for 2121MWGR3
- Use containers with T0 2.2.3
- Update CMSSW release used in last MWGR (2021MWGR2)
- Merge pull request #4565 from jhonatanamado/master
- Production file configuration MWGR2
2.2.2 to 2.2.3:
- Solve pylint warnings 2 (whitespaces, bad indentation, etc)
- Merge pull request #4563 from dmwm/2021MWGR2_Replay
- Test configuration for 2021MWGR2
- Merge branch 'master' of https://github.com/dmwm/T0
- Solve pylint warnings (whitespaces, bad indentation, etc)
- Merge branch 'master' of https://github.com/dmwm/T0
- Updating deployment scripts
- Merge pull request #4508 from vytjan/wbm_to_oms_queries
- Merge pull request #4550 from dmwm/2020MWGR5_Replay
- Update ReplayOfflineConfiguration.py
- Merge pull request #4555 from dmwm/Production2021MWGR1
- Update ContainterConfig.sh
- Production configuration for MWGR1. DtCalib producers removed
- Merge pull request #4551 from dmwm/MWGR5_Prod
- Merge pull request #4554 from dmwm/dependabot/pip/httplib2-0.19.0
- Bump httplib2 from 0.18.0 to 0.19.0
- Production configuration for MWGR5 2020
- Replay configuration for MWGR5
- Migrating WBM to OMS in T0 Oracle queries.
2.2.1 to 2.2.2:
- Replay rules lifetime updated to 15 days
- Base Replay config to use with RucioInjector
- Merge pull request #4542 from dmwm/2020MWGR4_Replay_337240_337234
- Initial replay configuration for MWGR4 2020
2.2.0 to 2.2.1:
- Merge pull request #4549 from mapellidario/master
- [build] Add requirements.txt
- Merge pull request #4546 from dmwm/fix-RunConfig-unittest
- Update RunConfig_t.py
- Merge pull request #4544 from jhonatanamado/MWGR4_ProdConfig
- Change the configuration node for MWGR#4
- Clear DB after unit tests and new processing version for replays
- Fix Repack tests usage of MaxLatency
- Merge pull request #4536 from dmwm/2020MWGR3_Replay_335508_336349_336436
- Merge pull request #4535 from dmwm/ConfigMWGR3
- Update GTs to production version. Update ContainerConfig.sh
- Production configuration for MWGR3
- Add skip-file directive for Tier0Config.py
- ContainerConfig.sh now allows to specify replay type
- Update Tier0 version of deploy scripts
- Initial replay configuration for MWGR3 2020
- Remove bad pylint code
- Merge pull request #4531 from dmwm/container_config
- Base container configuration
- Add ContainterConfig.sh to configure PRs to test
- Replay configuration for run 334393 (MWGR0 2020)
- Replay configuration for run 32689 (collisionsHI2018)
2.1.9 to 2.2.0:
- Update ProdOfflineConfiguration.py for 2020MWGR2. Fix HIReplay workfloy issue
- Changed wmcore version to 1.3.6.patch4
2.1.8 to 2.1.9:
- Changing to CMSSW_11_0_2
- Merge branch 'master' of https://github.com/dmwm/T0
- Mwgr#0 config (#4522)
- Changed wmcore version to 1.3.3.patch2
2.1.7 to 2.1.8:
- Merge pull request #1 from germanfgv/MWGR2020#1_test_cmssw11_0_1
- Change release to cmssw11_0_1
2.1.6 to 2.1.7:
- T0 2.1.7 (#4517)
- Merge pull request #4516 from andresfelquintero/updated_deploy_prod
- Updated 00_deploy_prod.sh
- Updated 00_deploy_replay
- Changed wmcore version to 1.2.8
2.1.5 to 2.1.6:
- Merge pull request #4515 from andresfelquintero/MWGR#4config
- Mwgr#4 config (#6)
- Merge pull request #4507 from vytjan/workqueue-fix-tier0
- Do not allow T0 to use WorkQueue in any case.
2.1.4 to 2.1.5:
- Merge pull request #4506 from vytjan/refactoring-patches
- Refactoring patching script. 2.1.5. release in the deploy scripts.
- Merge pull request #4505 from vytjan/mwgr3-final-replay
- Production and replay configuration used for MWGR#3.
- Merge pull request #4502 from vytjan/configurable-retries
- Merge pull request #4503 from vytjan/deployment-updates
- Adding a configurable number of retries default configuration. More information on T0 twiki cookbook.
- Merge pull request #4501 from andresfelquintero/openfilechange
- Updated conditionuploadapi.py
- Merge pull request #4499 from andresfelquintero/UnitTest_Tier0Feeder_t
- CMSSW repackProcess does not accept unicode strings. Meantime, after upgrading sqlalchemy release, all queries return unicode strings.
- Updated Tier0Feeder_t
- Merge pull request #4495 from andresfelquintero/Unit_test_Run_Config_t
- Merge pull request #4494 from andresfelquintero/Unit_test_Repack_Merge_t2
- Merge pull request #4492 from andresfelquintero/Unit_test_Express_Merge_t
- Merge pull request #4491 from andresfelquintero/Unit_test_Tier0Feeder_t
- Merge pull request #4483 from andresfelquintero/Unit_test_Repack_t
- Merge pull request #4482 from andresfelquintero/Unit_test_Express_t
- Merge pull request #4481 from andresfelquintero/Unit_test_Condition_t
- Updated RunConfig_t and ExampleConfig
- Updated RepackMerge_t.py
- Merge pull request #4490 from vytjan/deployment-scripts-update
- Update ExpressMerge_t.py
- Tier0Feeder_t and ExampleConfig.py update
- Adding the up-to-date versions of deploy and software scripts
- Merge pull request #4488 from vytjan/MWGR1-2019
- CMSSW_10_3_3 and turned off PromptReco for MWGR1 PDs.
- Updated Repack_t
- Express_t updated
- Unit test Condition_t updated
- Merge pull request #4480 from vytjan/smnotifydb-to-secrets
- Moving SMNOTIFYDB_URL to secrets file
- Merge pull request #4478 from andresfelquintero/master
- Merge pull request #4479 from hufnagel/unittest-schema-init
- fix schema init order for unittests
- Add Apache 2 License and Notice
2.1.3 to 2.1.4:
- Merge pull request #4476 from vytjan/versioning-workflows
- Adding a global EnableUniqueWorkflowName configuration parameter to be used in replays.
- Merge pull request #4473 from vytjan/Commissioning19-era
- Commissioning2019 era.
- Merge pull request #4472 from vytjan/HIDoubleMuonPsiPeri
- HIDoubleMuonPsiPeri PD added.
- Merge pull request #4471 from vytjan/10_3_1_patch2
- 10_3_1_patch2 configuration. Reco version incremented. PbPbZMM skim.
- Merge pull request #4468 from andresfelquintero/HIConfigDQM
- ChangesonDQMforMinimumBiasPDs
- Merge pull request #4467 from vytjan/VdMScanPDs
- Added HICentralityVetoReducedFormat[0-11], HIMinimumBias[10-19] PDs.
- Merge pull request #4466 from hufnagel/fix-disk-node-bug
- fix bug in disk node configuration
- Merge pull request #4464 from hufnagel/raw-tape-node
- Merge pull request #4465 from vytjan/HI2018Configuration
- HI2018 run configuration
- add ability to configure separate tape node for RAW
- Merge pull request #4463 from vytjan/Run2018EConfig
- 2018E era config and HI scenarios added.
- Merge pull request #4462 from vytjan/Pre_HI_Configuration
- Updated from production headnode configuration.
- Merge pull request #4461 from vytjan/AFTER_TS2
- Updated GTs, ALCARECO matrix, added PDs used in HI tests, added the HI test scenario.
- Merge pull request #4460 from hufnagel/maxrun-fix
- fix a problem with evaluating multiple maxRun statements
- Merge pull request #4459 from vytjan/CMSSW_10_2_4
- Updated Prod GTs to 102X_dataRun2_Prompt_v6 and the replay configuration for the 10_2_5_patch1 release.
- Merge pull request #4457 from hufnagel/memory-limits
- remove maxRSS and maxVSize overrides
- Merge pull request #4455 from ticoann/add_priority_transition
- Merge pull request #4456 from hufnagel/scouting-repack-memory
- add priority transiton needed for WMAgent 1.1.15 and up
- Merge pull request #4454 from andresfelquintero/CMSSW_10_2_1
- CMSSW_10_2_1 update
- Merge pull request #4453 from andresfelquintero/newera2018d
- New era Run2018D with CMSSW_10_2_0 and new GTs. New dataset ParkingBPHPromptCSCS
- request more memory for the ScoutingPF repacking
2.1.2 to 2.1.3:
- Merge pull request #4452 from vytjan/CMSSW_10_1_9
- CMSSW_10_1_9 configuration
- Merge pull request #4451 from vytjan/PRProcessingVersionV3
- Increased PR processing version from run 319826.
- Merge pull request #4450 from vytjan/AdjustmentsAfter10_1_8Deployment
- Back to PromptCalibProdBeamSpotHP, RAL Disk name fix, egamma DQM seq name fix.
- Merge pull request #4449 from vytjan/CMSSW_10_1_8
- 10_1_8 release and increment of RECO processing version.
- Merge pull request #4448 from cronot99/run2018c_era
- Updated configuration for Run2018C era
- Merge pull request #4447 from vytjan/highBetaStarScenario
- Added a config to properly configure processing scenarios for the PromptReco release.
- Merge pull request #4446 from cronot99/totem_write_reco
- Enabled write_reco for TOTEM* datasets
- Merge pull request #4445 from cronot99/90m_lowpileup_totem_datasets
- Added special TOTEM and MinimumBias0 datasets for 90m and LowPileUp menu
- Merge pull request #4444 from cronot99/totem4_dataset
- Added missing Totem4 dataset for the Roman Pots alignment.
- Merge pull request #4443 from vytjan/10_1_7_config
- 10_1_7 configuration with new GTs and incremented PR processing version.
- Merge pull request #4442 from cronot99/hlt_unassigned_path_exceptions
- Increased unassigned HLT menu exception number (317512)
- Merge pull request #4441 from vytjan/10_1_6_replay_Config
- CMSSW 10_1_6 config.
- Merge pull request #4440 from vytjan/EraRun2018B
- Switch to the era Run2018B. A new 101X_dataRun2_Prompt_v10 GT added.
- Merge pull request #4439 from vytjan/10_1_5
- 10_1_5 replay configuration
- Merge pull request #4438 from watson-ij/10_4_1_p1
- Update to CMSSW 10.4.1.patch1
- Merge pull request #4437 from vytjan/10_1_4_Replay
- Replay configuration for the 10.1.4 release test. DtCalib and PromptCalibProdSiPixel alcarecos re-enabled.
- Merge pull request #4436 from vytjan/ParkingBPH1-6_PDs_added
- Added ParkingBPH[1-6] PDs to be stored only on CERN tape.
- Merge pull request #4435 from cronot99/cmssw_10_1_3
- Updated configuration to use CMSSW_10_1_3.
- Merge pull request #4434 from cronot99/sipixel_quality_pcl
- Updated AlCaRecoMatrix for SiPixel Quality PCL workflow.
- Merge pull request #4433 from hufnagel/config-duplicate-dataset-fix
- fix a problem with the duplicate dataset in config patch
- Merge pull request #4432 from hufnagel/config-duplicate-dataset
- protect against configuring the same dataset twice
- Merge pull request #4431 from hufnagel/unconfigured-run-t0datasvc
- don't forward unconfigured runs to Tier0 Data Service
- Merge pull request #4428 from cronot99/new_era_2018a
- Merge pull request #4429 from hufnagel/tier0-accounting-group
- change from production to tier0 accounting group
- Configured new era 2018A.
- Merge pull request #4427 from cronot99/promptreco_revert
- Reenabled PromptReco for multiple datasets.
- Merge pull request #4426 from cronot99/cmssw_10_1_2_patch2
- Updated configuration to use CMSSW_10_1_2_patch2.
- Merge pull request #4425 from cronot99/cmssw_10_1_2_patch1
- Updated configuration to use CMSSW_10_1_2_patch1, non-express DQM sequences and new physics_skims.
- Merge pull request #4424 from cronot99/cmssw_10_1_1_patch1
- Updated configuration to use CMSSW_10_1_1_patch1
- Merge pull request #4423 from cronot99/totem_romanpot_alignment_pds
- New Totem RomanPot Alignment Test PDs.
2.1.1 to 2.1.2:
- Merge pull request #4422 from hufnagel/removed-alerts
- adjust deployment to removed alerts
- Merge pull request #4421 from hufnagel/alcaharvest-lumi-info
- Merge pull request #4420 from vytjan/CMSSW_10_1_1_Configuration
- CMSSW_10_1_1 with 101X_dataRun2_Express_v7 and 101X_dataRun2_Prompt_v9 GTs configuration.
- Merge pull request #4419 from vytjan/NonStableBeams2018
- CMSSW_10_1_0 release, Express v5 and Prompt v6 GTs and AlCaRecos for AlCaP0, AlCaPhiSym and TestEnablesEcalHcal PDs.
- Merge pull request #4418 from hufnagel/extend-reco-config
- Merge pull request #4417 from cronot99/cmssw_10_0_5
- Updated configuration to use CMSSW_10_0_5 and new Prompt v5 GTs. Also, reenabled physics_skims.
- Merge pull request #4416 from cronot99/cmssw_10_0_4
- New CMSSW_10_0_4 and new Global Tags with GEM electronics map. Also reenabled raw_to_disk for PDs enabled on 2017.
- Merge pull request #4415 from vytjan/100X_dataRun2_Express_v2_Global_Tags
- Switched to new GTs.
- add data tiers and number of threads to reco config
- Merge pull request #4414 from cronot99/cmssw_10_0_3
- Configuration files for cruzet 2018 - CMSSW 10.0.3
- upload lumi text file from AlcaHarvest
- Merge pull request #4413 from vytjan/Processing-at-T2_CERN-site
- Set processing at T2 site as a default in both Replay and Prod config files.
2.1.0 to 2.1.1:
- Merge pull request #4412 from cronot99/MWGR2
- New Global Tags for MWGR2.
- Merge pull request #4411 from hufnagel/t0wmadatasvc-run-config
- populate run_config in t0wmadatasvc
- Merge pull request #4410 from cronot99/MWGR1_ignored_streams
- Added new ignored streams streamHLTRates, streamL1Rates and streamDQMRates. Removed physics_skims.
- Merge pull request #4409 from vytjan/MWGR1Config2018
- MWGR1 config, also added a new cosmics scenario.
- Merge pull request #4408 from hufnagel/streamer-site-configurable
- make pnn where streamer files are located configurable
- Merge pull request #4402 from amaltaro/file-location-worker
- Fix unit tests
- Set PNN instead of PSNs for wmbs file locations
- Merge pull request #4407 from cronot99/new_raw_limit_24GB
- New RAW file size limit increased to 24GB
- Merge pull request #4406 from hufnagel/tier0feeder-timefunction
- add timefunction to Tier0Feeder
- Merge pull request #4405 from hufnagel/new-ppref-scenario
- add the ppEra_Run2_2017_ppRef scenario
- Merge pull request #4404 from hufnagel/repack-maxsize-config
- Merge pull request #4403 from hufnagel/promptreco-red-button
- Merge pull request #4400 from vytjan/LowPUConfig2017
- Merging together Totem* datasets added to LowPUConfig2017.
- Merge pull request #4399 from cronot99/new_Totem_12_34_PDs
- Added new ppRef PDs Totem12 and Totem34
- Merge pull request #4398 from blallen/ppRefConfig
- Turn off prompt reco as a result of discussion at the Joint Meeting.
- check big red button for PromptReco
- Merge pull request #4397 from blallen/ppRefConfig
- version of config in use for ppReference run 2017.
- Merge pull request #4395 from blallen/PR@T2
- moving more PDs to run at T2 and adding FNAL subscriptions for SingleMuon.
- set max RAW file size from Tier0 code
- Merge pull request #4394 from cronot99/new_GTs_92X_dataRun2_Express_v8_Prompt_v11
- New Global Tags 92X_dataRun2_Express_v8 and 92X_dataRun2_Prompt_v11. Also maxSizeSingleLumi and maxEdmSize increased to 16GB. New AlcaLumiPixels[4-12] PDs. Configured siteWhitelist to T2_CH_CERN for PDs BTagMu, SingleMuon, SingleElectron.
- Merge pull request #4393 from vytjan/EraRun2017FConfiguration
- A current headnode config with Era 2017F.
- Merge pull request #4392 from vytjan/XeXeEraConfiguration
- XeXe era config used for Xenon runs on 2017-10-12.
- Merge pull request #4391 from hufnagel/raw-subscriptions
- make RAW custodial and non-custodial subscriptions in single call
- Merge pull request #4390 from hufnagel/diskthresholds-eos
- remove EOS mount from disk check
2.0.9 to 2.1.0:
- Merge pull request #4389 from hufnagel/diskthresholds-config
- configure disk monitoring
2.0.8 to 2.0.9:
- Merge pull request #4388 from cronot99/cmssw_9_2_12_patch1
- Updated configuration file to use CMSSW 9.2.12 patch1 and added new PDs ZeroBiasPD01 to ZeroBiasPD10
- Merge pull request #4387 from blallen/topic_restoreExpressInputRateLimit
- Revert to previous values to limit Express input rate.
- Merge pull request #4386 from cronot99/new_era_2017e
- New acquisition era 2017E, CMSSW 9.2.12 and GT '92X_dataRun2_Prompt_v9' for promptrecoGlobalTag and alcap0GlobalTag variables.
- Merge pull request #4385 from cronot99/new_vrrandom_datasets
- Added new PDs VRRandom0 and VRRandom7
- Merge pull request #4384 from cronot99/datasets_for_new_HigPU_fill
- Removed LumiPixels from alca_producers for AlCaLumiPixels. Added new ZeroBias and HLTPhysics PDs. Updated defaultRecoSplitting.
- Merge pull request #4383 from hufnagel/promptreco-express-memory
- update PromptReco and Express memory
- Merge pull request #4381 from hufnagel/alcaharvest-partition-fix
- Merge pull request #4380 from hufnagel/run-primds-done
- Merge pull request #4379 from hufnagel/stream-cmssw-override-fix
- Merge pull request #4378 from hufnagel/block-closing-assignment
- Merge pull request #4377 from hufnagel/reco-subscription
- Merge pull request #4376 from hufnagel/large-repack-fail
- Merge pull request #4375 from hufnagel/lumicount-autmatic-update
- Merge pull request #4374 from vytjan/NewEraNewHLTMenuV3
- Merge pull request #4373 from vytjan/CMSSWandDQMupdates
- Merge pull request #4373 from vytjan/CMSSWandDQMupdates
- Updated to the current configuration. Including the CMSSW update and writing to DQM updates for some PDs.
- automatic updates for lumicount for some runs
- fix for the yearly parititon added to AlcaHarvest EOS upload dir
- push run primds completion info to tier0 data service
- Merge pull request #4371 from vytjan/ExpressSubscriptionsFix
- Fixed broken Express subscriptions configuration.
- Merge pull request #4370 from vytjan/T0Release2.0.8
- Prod config updated for the 2.0.8 release.
- Merge pull request #4369 from vytjan/ZeroBiasNPDDuplicationRemoved
- ZeroBiasN duplicate removed. tape_node set to None in all PDs. EXONoBPTXSkim skim added. New Express config added. CMSSW 9_2_7.
- stop considering HLT CMSSW patch levels for override purposes
- set block closing delay in assignment
- allow to configure a separate disk location for RECO
- implement an upper limit for repack and repackmerge jobs
- Merge pull request #4367 from vytjan/Era2017CConfiguration
- Updated to the Era2017C.
- Merge pull request #4365 from vytjan/Switch_to_cmssw9_2_6
- Switched to cmssw926 starting from the run 298809 and new GTs.
- Merge pull request #4364 from vytjan/vytas_dev
- Modified Replay and Replay Run1 configs.
- Merge pull request #4363 from blallen/AddMissingZeroBiasProducer
- Added missing producer back to ZeroBias datasets.
- Merge pull request #4362 from ebohorqu/ZeroBiasX
- ZeroBiasX PDs not reconstructed, Run2017B and Tier0_Replay_* AcqEras, CMSSW_9_2_3_patch2, processing version to 1
2.0.7 to 2.0.8:
- Merge pull request #4361 from hufnagel/reco-more-memory
- even more memory for Express and PromptReco
- Merge pull request #4357 from blallen/ProdReplayConfigMerge
- update to 923p1 and increment processing version.
- updated HLT streams to match prod.
- Merge pull request #4360 from hufnagel/reco-memory
- adjust the Express and PromptReco memory limits
- Merge pull request #4359 from hufnagel/repack-express-spec-move
- Merge pull request #4358 from hufnagel/alcaharvest-upload-partition
- move Repack and Express specs to WMCORE, adopt to new parameter validation rules
- promote HLTPhysics[0-8] to same config as HLTPhysics.
- Write reco for ZeroBias* and HLTPhysics. Also readded raw_to_disk option for zerobias*.
- brought Prod and Replay configs into sync.
- consolidate Commissioning section of config. also collapsing effort needed to make _0T datasets (might want to do this everywhere?)
- copy config from vocms0313.
- partition the AlCaHarvest upload directory by year
- Merge pull request #4354 from ebohorqu/run2017a
- Latest changes for stable beams (Run2017A, 92X v2 GTs, ...)
2.0.6 to 2.0.7:
- Merge pull request #4353 from hufnagel/express-flexible
- Merge pull request #4352 from hufnagel/sm-discovery-null-size
- protect against null file size in SM discovery
- Merge pull request #4351 from hufnagel/sm-events-fix
- Merge pull request #4350 from hufnagel/sm-discovery-checks
- better checks for anomalous data from SM discovery
- Merge pull request #4349 from hufnagel/scenario-run-era-dependent
- allow scenario to be configured run and era dependent
- get the correct number of events for streamer files
- Merge pull request #4348 from hufnagel/sm-discovery-limits
- make Express more flexible, allow to configure it almost like Bulk
- Merge pull request #4347 from hufnagel/add-2017-scenarios
- add 2017 scenarios
- tune the SM data discovery limits one can set, adding max and min runs
- Merge pull request #4346 from hufnagel/transfersystem-changes
- changes for new transfersystem
- Merge pull request #4345 from ticoann/uuid_module_name_change
- Change the UUID module name
- Merge pull request #4338 from hufnagel/repack-lazy
- Merge pull request #4343 from johnhcasallasl/new_PAMinBias_PDs
- Adding PAMinimumBias[9-20] PDs to the configuration
- Merge pull request #4342 from johnhcasallasl/PDs_For_The_pPb_VdM_scan
- Merge pull request #4341 from johnhcasallasl/Remove_Disk_node
- New PDs for the pPb VdM scan
- Removing disk_node from the default configuration
- Merge pull request #4340 from ebohorqu/no_miniaod_for_hcalnzs
- Removing write_minaod = true for HcalNZS
- Merge pull request #4339 from hufnagel/spec-validation
- Merge pull request #4337 from amaltaro/express-multicore
- add some needed parameters for processing string validation
- Fix multicore handling in express and repack specs
- switch repack to lazy-download, changes job estimates
- Merge pull request #4335 from johnhcasallasl/CMSSW_8_0_24
- CMSSW_8_0_24, new dqm sequences
- Merge pull request #4334 from ebohorqu/repack-maxInputEvents
- Smaller value for maxInputEvents for Repack
- Merge pull request #4333 from johnhcasallasl/CMSSW_8_0_23_p2_AndNewPDs_for_PARun
- Switching to CMSSW_8_0_23_patch2 and adding PDs for the PARun
- Merge pull request #4332 from johnhcasallasl/Config_for_HI_2016
- Current Configuration in the Tier0 headnode
- Merge pull request #4331 from johnhcasallasl/addingScenarioForPARun
- Adding ppEra_Run2_2016_pA scenario to the T0AST
- Merge pull request #4330 from johnhcasallasl/CMSSW_8_0_22
- Switch to CMSSW_8_0_22 and new AlCa prod
- Merge pull request #4329 from johnhcasallasl/increaseEventsPerCore
- Increasing the number of events per core to reduce the number of merge jobs
- Merge pull request #4328 from johnhcasallasl/Adding_ZeroBiasPixelHVScan0_7_PDs
- Adding ZeroBiasPixelHVScan0-7 PDs
- Merge pull request #4327 from johnhcasallasl/HighPU_MenuUpdates
- New PDs for the HighPU2016 runs
- Merge pull request #4326 from ebohorqu/cmssw8020p1
- CMSSW_8_0_20_patch1
- Merge pull request #4325 from ebohorqu/hcal_seq_to_hcalnzs
- Adding @hcal to DQM sequences of HcalNZS
- Merge pull request #4324 from johnhcasallasl/CMSSW_8_0_20
- switch to CMSSW_8_0_20, GTs, era
2.0.5 to 2.0.6:
- Merge pull request #4322 from hufnagel/promptreco-ordered
- Merge pull request #4323 from ticoann/remove_archivereporter
- remove ArchiveReporter compoent
- release PromptReco in run order
- Merge pull request #4321 from ebohorqu/cmssw8018
- CMSSW_8_0_18_patch1 release
- Merge pull request #4320 from ebohorqu/newZeroBiasFirstBunchPDs
- Merge pull request #4319 from hufnagel/runsummary-timezone
- fix timezone problem in RunSummary query
- Two new PDs: ZeroBiasFirstBunchAfterTrain and ZeroBiasFirstBunchInTrain
- Merge pull request #4318 from johnhcasallasl/EraRun2016G
- Switch to era Run2016G
- Merge pull request #4317 from hufnagel/force-close-fix
- Merge pull request #4316 from hufnagel/config-era-run-express
- Merge pull request #4315 from johnhcasallasl/CMSSW_8_0_17
- Switching to CMSSW_8_0_17 and adding the HcalCalIsolatedBunchSelector and HcalCalIsolatedBunchFilter AlCa producers
- fix forceCloseRuns script
- expand era and run dependent config parameters to express and repack
2.0.4 to 2.0.5:
- Merge pull request #4288 from alexanderrichards/pnn_fix
- Merge pull request #4313 from hufnagel/disable-robust-merge
- Merge pull request #4314 from johnhcasallasl/80X_dataRun2_Express_v12
- Switch to 80X_dataRun2_Express_v12
- disable robbust (ie. flaky) merge
- Merge pull request #4312 from johnhcasallasl/subscribe_DoubleMuonToDisk
- Allowing the subscription of DoubleMuon to disk
- Merge pull request #4311 from johnhcasallasl/switch_to_CMSSW_8_0_16
- Switch to CMSSW_8_0_16 and use of the TkAlCosmicsInCollisions AlCa produces on the NoBPTX PD
- Merge pull request #4310 from ebohorqu/Run2016E_pv1_newSubscriptions
- New subscription schema, AcqEra Run2016F and Processing version 1
- Merge pull request #4309 from ebohorqu/HcalCalIsoTrk_and_cmssw8015
- CMSSW_8_0_15, HcalCalIsoTrk for Commissioning PD and cleaning
- Merge pull request #4308 from johnhcasallasl/HTLPhysics_ConfigUpdate
- Updating HTLPhysics PDs config for high rates
- Merge pull request #4307 from ebohorqu/bhpskim_and_cmssw8014_for_replay
- BHPskim for some PDs and Run2016E config for replays
- Merge pull request #4306 from johnhcasallasl/config_for_Run2016E
- Proposed configuration for the new era: Run2016E
- Merge pull request #4305 from hufnagel/raw-disk-configurable
- make RAW subscription to Disk node optional
- Merge pull request #4304 from hufnagel/alcaharvest-sipixelali
- Merge pull request #4303 from hufnagel/tier0config-run-era
- allow some Tier0Config parameters to be era or run dependent
- special handling for SiPixelAli PCL
- Merge pull request #4302 from johnhcasallasl/subscriptionsRedefinition2016
- Proposed Configuration for Run2016D. New subscriptions distribution and CMSSW_8_0_13_patch1
- Merge pull request #4301 from johnhcasallasl/config_Run2016C
- Config Changes for Run2016C
- Merge pull request #4300 from hufnagel/run_stream_done_quicker
- mark run/stream as done quicker
- Merge pull request #4299 from johnhcasallasl/CMSSW_8_0_11
- Switching to CMSSW_8_0_11
- Merge pull request #4298 from johnhcasallasl/CMSSW_8_0_10_patch1
- Switching to CMSSW_8_0_10_patch1
- Merge pull request #4297 from johnhcasallasl/CMSSW_8_0_10
- Newest CMSSW release and Express GT. Adding a new AlCaProducer for Express
- Merge pull request #4296 from johnhcasallasl/adjustReplayBasePrio
- Adjust base priority for replays
- Merge pull request #4295 from hufnagel/repack-notifications-quicker
- send SM repack notifications quicker, fixes #4293
- Merge pull request #4294 from johnhcasallasl/adjust_diagnose_active_runs
- Updating diagnoseActiveRuns script
- Merge pull request #4292 from hufnagel/repack-event-limits
- consistent behavior for repack event limits
- Merge pull request #4291 from johnhcasallasl/increaseRepackMaxEventsValue
- Increase of the maxInputEvents value in the Repack config
- Merge pull request #4290 from hufnagel/runsummary-query-update
- change syntax for runsummary query
- Merge pull request #4289 from johnhcasallasl/CMSSW_8_0_8_patch1
- Switch to CMSSW_8_0_8_patch1
- Merge pull request #4287 from ebohorqu/l1mimbias
- L1MinimumBias[0..9] PDs
- Merge pull request #4286 from ebohorqu/cmssw808
- CMSSW_8_0_8, Reco Processing Version 2 and ZeroBias0
- migrating DB table and column names from sename to pnn
2.0.3 to 2.0.4:
- Merge pull request #4285 from hufnagel/memory-reservation
- adjust the memory reservation
- Merge pull request #4284 from ebohorqu/cmssw807p1_procVersion2
- CMSSW_8_0_7_patch1, processingVersion 2 and cleaning default architecture and overrides
- Merge pull request #4283 from ebohorqu/alcaProducers
- New alca producers and express GT v7
- Merge pull request #4281 from ebohorqu/cmssw807
- CMSSW_8_0_7 and acquisition era Run2016B
- Merge pull request #4280 from ebohorqu/newPDs_and_DQMseqs
- New PDs, lastest GTs (express v6, prompt v8), DQM seqs for ZeroBias
- Merge pull request #4279 from ebohorqu/cmssw806
- CMSSW_8_0_6
- Merge pull request #4278 from ebohorqu/hltphysics0
- Adding HLTPhysics0 and HLTPhysics0_0T.
- Merge pull request #4277 from johnhcasallasl/CMSSW_8_0_5_patch1
- Switch to CMSSW_8_0_5_patch1
- Merge pull request #4276 from johnhcasallasl/CMSS_8_0_5
- Changes for first collision 2016
- Merge pull request #4275 from hufnagel/memory-limits
- adjust memory limits for Express and PromptReco
- Merge pull request #4274 from ebohorqu/no_alcaprod_for_express_and_no_common_for_hlt
- Removing @common sequence in HTLPhysics PDs and PromptCalibProdSiStripGains producer in Express
- Merge pull request #4273 from johnhcasallasl/RemoveDQMSeqs
- Removing DQM sequences from Express0T an ZeroBias*_0T
- Merge pull request #4272 from johnhcasallasl/CMSSW_8_0_4
- Changes for the Quiet Beam 2016
- Merge pull request #4271 from hufnagel/lowpu-scenario
- add low pileup scenario
2.0.2 to 2.0.3:
- Merge pull request #4270 from hufnagel/run-start-stop
- get run start and stop times from run summary
- Merge pull request #4269 from ebohorqu/cmssw803p1
- CMSSW_8_0_3_patch1
- Merge pull request #4268 from hufnagel/storage-node-insert
- fix bug in storage node insert
2.0.1 to 2.0.2:
- Merge pull request #4267 from hufnagel/subscriptions-groups
- some minor fixes for subscriptions code
- Merge pull request #4266 from hufnagel/skim-subscription
- Merge pull request #4265 from hufnagel/inject-override-adjust
- Merge pull request #4264 from johnhcasallasl/MWGR4_2016_config
- CMSSW_8_0_3 and new GTs
- set different subscription for skim
- remove the injection site override option
- Merge pull request #4263 from hufnagel/repack-stageout-merged
- Merge pull request #4262 from johnhcasallasl/CMSSW_8_0_2
- Switch to CMSSW_8_0_2
- implemet stageout to merged for repack
- Merge pull request #4261 from hufnagel/repack-maxlatency
- Merge pull request #4260 from johnhcasallasl/MWGR3_2016
- Configuration changes for 2016 MWGR3
- Merge pull request #4259 from ebohorqu/cmssw_800p3
- CMSSW_8_0_0_patch3
- Merge pull request #4258 from ebohorqu/cmssw_800p2
- CMSSW_800p2, default arch slc6_amd64_gcc493, parameter maxLatency to use repack patch
- Merge pull request #4257 from ebohorqu/GTs_80X_v1
- New GTs: 80X v1
- Merge pull request #4256 from johnhcasallasl/MWGR2_2016
- Changes for MWGR2 2016
- Merge pull request #4255 from johnhcasallasl/Commissioning2016_MGWR1
- AqcEra set to Commissioning 2016. Using CMSSW_7_5_8_patch3. HI configs removed from here
- implemeted max latency rules for repack and repackmerge
- Merge pull request #4254 from hufnagel/dataset_locked
- Merge pull request #4253 from hufnagel/runstream-done
- forward run/stream processing completion into t0wmadatasvc
- forward produced datasets to t0wmadatasvc
- Merge pull request #4252 from hufnagel/subscriptions-groups
- Merge pull request #4251 from hufnagel/memkill-fix
- configure different PhEDEx groups for various subscriptions
- adjust runtime memory kill limits
2.0.0 to 2.0.1:
- Merge pull request #4250 from hufnagel/mem-kill-limits
- adjust RSS and VSize runtime limits
- Merge pull request #4249 from hufnagel/pcl-upload-error
- Merge pull request #4248 from hufnagel/heavyions-memory
- Merge pull request #4235 from hufnagel/nodisk-subscriptions
- Merge pull request #4220 from hufnagel/prod-pcl-upload
- Merge pull request #4247 from johnhcasallasl/CMSSW_7_5_8_p1
- Switch to CMSSW_7_5_8_patch1
- Merge pull request #4246 from ebohorqu/more_himinimumbias_ds
- More HIMinimumBias Datasets
- Merge pull request #4244 from ebohorqu/multicore_hiexpress
- Multicore to 6 for HIExpress
- Merge pull request #4243 from johnhcasallasl/CMSSW_7_5_7_p3
- Switching to CMSSW_7_5_7_patch3 and setting multicore = 6 for HI PDs
- Merge pull request #4242 from ebohorqu/hi_multicore
- Multicore for HI
- Merge pull request #4241 from ebohorqu/more_hi_datasets
- More HI data sets
- Merge pull request #4240 from hufnagel/config-20151201-1
- config changes
- Merge pull request #4239 from hufnagel/config-20151201
- config changes
- Merge pull request #4238 from blallen/757_p2
- change memory requirements for HeavyIonsRun2 scenario
- Replay to test 757_p2 and lite dqm.
- Merge pull request #4237 from hufnagel/hi-replay-config
- create HI replay config
- support tape supscriptions with no disk
- Merge pull request #4236 from ebohorqu/hi_configuration_file
- Last HI configuration
- Merge pull request #4234 from johnhcasallasl/CMSSW_7_5_6_patch1
- Switching to CMSSW_7_5_6_patch1
- Merge pull request #4232 from hufnagel/express-alca-fix
- fix express alca producers
- Merge pull request #4231 from johnhcasallasl/new_HI_GlobalTags
- New GTs and typo correction
- Merge pull request #4230 from johnhcasallasl/HI2015_config_updates
- Updates in the CMSSW version, PR GT, AlCa Matrix and Skims for HI
- Merge pull request #4229 from hufnagel/hi-event-estimates
- reco event/size estimates for HI
- Merge pull request #4228 from johnhcasallasl/FixesTypoInHIExpressConfig
- Fixes a typo in the HIExpress GT config
- Merge pull request #4227 from johnhcasallasl/removeAlCaProdsFrom_HIExpress
- Removing AlCa producers from HIExpress config
- Merge pull request #4226 from hufnagel/hiconfig-virginraw
- remove virginraw dataset from config
- Merge pull request #4225 from hufnagel/config-tweaks-ppref
- some last minute config tweaks for ppref data
- make new PCL upload code work with prod Tier0
- Merge pull request #4224 from johnhcasallasl/ppReferenceRun_HI_Config
- CMSSW_7_5_5_patch3, HI GTs, updated AlcaMatrix, Removing _0T for HI PDs, Updating processing site
- Merge pull request #4223 from hufnagel/hiexpress-add
- add HIExpress config
- Merge pull request #4222 from johnhcasallasl/HI_2015_PDs
- Adding PDs for HI Run 2015
- Merge pull request #4221 from johnhcasallasl/HI_ppReferenceRunSetup
- Configuration for pp Reference Run 2015 (HI)
- enable error detection in PCL upload
1.9.99 to 2.0.0:
- Merge pull request #4219 from hufnagel/config-20150929
- config python formating changes
- Merge pull request #4217 from johnhcasallasl/CMSSW_7_4_15_patch1
- Merge pull request #4218 from hufnagel/python-futurize
- Switch to the CMSSW_7_4_15_patch1