-
Notifications
You must be signed in to change notification settings - Fork 4
/
versions.cfg
3500 lines (3430 loc) · 99.6 KB
/
versions.cfg
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
# $Id$
Versions
{
v21r0p1
{
Interfaces = if_2014052001
##Now this Workflow tag exists
Workflow = wo_2014052001
Core = co_2014052001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v21r0p0
{
Interfaces = if_2014052001
Workflow = wo_2014052001
Core = co_2014052001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p10
{
Interfaces = if_2013112001
#CHANGE: ModuleBase: fix new fullCopy usage
Workflow = wo_2013112103
#CHANGE: fullCopy bug fix
Core = co_2013112103
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p9
{
Interfaces = if_2013112001
#CHANGE: ModuleBase: adapt to new fullCopy signature
Workflow = wo_2013112102
#CHANGE: fullCopy can now handle * items
Core = co_2013112102
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p8
{
Interfaces = if_2013112001
#FIX: ModuleBase
Workflow = wo_2013112101
Core = co_2013112101
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p7
{
Interfaces = if_2013112001
Workflow = wo_2013112006
FIX: fullCopy needs more work
Core = co_2013112101
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p6
{
Interfaces = if_2013112001
#FIX: MarlinAnalysis: fix the marlin_dll for user.
Workflow = wo_2013112006
Core = co_2013112001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p5
{
Interfaces = if_2013112001
#FIX: MokkaAnalyis: copy the mac file to the run dir if set.
Workflow = wo_2013112005
Core = co_2013112001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p4
{
Interfaces = if_2013112001
#FIX: Request name
Workflow = wo_2013112004
Core = co_2013112001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p3
{
Interfaces = if_2013112001
#FIX: MokkaAnalysis
Workflow = wo_2013112003
Core = co_2013112001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p2
{
#NEW: setRequired method
Interfaces = if_2013112001
#FIX: new Failover signature in v6r9
#CHANGE: a bit the structure of the failover handling
Workflow = wo_2013112002
#NEW: new fullCopy method used for the Required resolution
Core = co_2013112001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p1
{
Interfaces = if_2013111301
#FIX: new Failover signature in v6r9
Workflow = wo_2013112001
Core = co_2013111301
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r1p0
{
Interfaces = if_2013111301
Workflow = wo_2013111301
Core = co_2013111301
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013111301
}
v20r0p7
{
Interfaces = if_2013111002
Workflow = wo_2013111001
Core = co_2013111001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p6
{
Interfaces = if_2013111002
Workflow = wo_2013111001
Core = co_2013111001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p5
{
Interfaces = if_2013110103
Workflow = wo_2013110104
Core = co_2013110106
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p4
{
Interfaces = if_2013110101
Workflow = wo_2013110104
Core = co_2013110105
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p3
{
Interfaces = if_2013103001
Workflow = wo_2013110103
Core = co_2013110105
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p2
{
Interfaces = if_2013103001
Workflow = wo_2013110103
Core = co_2013110104
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p1
{
Interfaces = if_2013103001
Workflow = wo_2013110102
Core = co_2013110103
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v20r0p0
{
Interfaces = if_2013103001
Workflow = wo_2013110101
Core = co_2013110101
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p14
{
Interfaces = if_2013103001
Workflow = wo_2013082801
Core = co_2013103001
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p13
{
Interfaces = if_2013092601
Workflow = wo_2013082801
Core = co_2013082801
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p12
{
Interfaces = if_2013082801
Workflow = wo_2013082801
Core = co_2013082801
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p11
{
Interfaces = if_2013082801
Workflow = wo_2013082801
Core = co_2013082801
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p10
{
Interfaces = if_2013082001
Workflow = wo_2013082101
Core = co_2013072501
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p9
{
Interfaces = if_2013082001
Workflow = wo_2013082001
Core = co_2013072501
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p8
{
Interfaces = if_2013072401
Workflow = wo_2013062701
Core = co_2013072501
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p7
{
Interfaces = if_2013072401
Workflow = wo_2013062701
# Limit memory for java tests
Core = co_2013072501
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p6
{
#FIX: parsing of meta data in ILDProductionJob
Interfaces = if_2013072401
Workflow = wo_2013062701
Core = co_2013052901
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p5
{
#FIX: Workflow remove hardcoded names in application modules
#Fix: CLIC production script E-gamma processes
Interfaces = if_2013062701
Workflow = wo_2013062701
Core = co_2013052901
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p4
{
FIX: New application was unusable
Interfaces = if_2013053004
Workflow = wo_2013053001
Core = co_2013052901
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p3
{
FIX: Typos in the applications
Interfaces = if_2013053003
Workflow = wo_2013053001
Core = co_2013052901
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p2
{
NEW: Add Application to probe nodes
FIX: Typos in the applications
Interfaces = if_2013053002
NEW: Add Module to probe nodes
Workflow = wo_2013053001
Core = co_2013052901
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p1
{
#CHANGE: Add the registration to the e-group in the add-user script
Core = co_2013052901
#NEW: Add script to cleanup the broken ancestors/daughters.
Interfaces = if_2013052901
Workflow = wo_2013051401
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r1p0
{
#CHANGE: Make the PrepareLibs a code that can be called directly
#CHANGE: CreateXXTarBalls: Call the PrepareLibs code to clean up the libs before creating the tarballs
#NEW: Script listing the VO members
#NEW: Script to register new users
#NEW: Utility to read in the whizard.in and return the correct python dictionary.
Core = co_2013052102
#CHANGE: Rename all application members so that they match their setters
#NEW: Add possibility to get the application dict to allow deep copy of an application
#CHANGE: UserJob will require an ilc_user proxy
Interfaces = if_2013052101
Workflow = wo_2013051401
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r0p2
{
Interfaces = if_2013041602
Core = co_2013041601
#FIX: FailoverRequests module: do not mark Split job's InputFile as Unused when the workflow status is failed.
Workflow = wo_2013051501
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v19r0p1
{
Interfaces = if_2013041602
Core = co_2013041601
#CHANGE: Add CutEfficiency and Reduction as metadata for the files produced after stdhepcut
Workflow = wo_2013051401
ProcessProductionSystem = pprs_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
ILCTransformationSystem = ts_2013041602
}
v18r0p8
{
#FIX: Allow the ProductionJob to use Limited, Sliced, and SlicedLimited plugins
Interfaces = if_2013041602
#FIX: Many small glitches to complete the system
ILCTransformationSystem = ts_2013041602
Core = co_2013041601
ProcessProductionSystem = pprs_2013040301
Workflow = wo_2013041603
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p7
{
Interfaces = if_2013041601
ILCTransformationSystem = ts_2013041601
Core = co_2013041601
ProcessProductionSystem = pprs_2013040301
#FIX: bad tag
Workflow = wo_2013041603
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p6
{
#CHANGE: Update documentation of scripts
Interfaces = if_2013041601
#FIX: Initialization of DataRecoveryAgent
#NEW: Allow for "sliced" productions, add all relevant agents/classes
ILCTransformationSystem = ts_2013041601
#FIX: add-software: check presence of file before attempting upload
#FIX: FileUtils: make sure the path has a trailing /
Core = co_2013041601
ProcessProductionSystem = pprs_2013040301
#CHANGE: Catch the StartFrom set at the workflow level, needed for Sliced productions
Workflow = wo_2013041601
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p5
{
Core = co_2013040301
#NEW: Added StdhepCutJava application
Interfaces = if_2013041101
ILCTransformationSystem = ts_2013040301
ProcessProductionSystem = pprs_2013040301
Workflow = wo_2013041102
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p4
{
Core = co_2013040301
Interfaces = if_2013040301
ILCTransformationSystem = ts_2013040301
ProcessProductionSystem = pprs_2013040301
#CHANGE: Final command call for stdhepcutjava
Workflow = wo_2013041102
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p3
{
Core = co_2013040301
Interfaces = if_2013040301
ILCTransformationSystem = ts_2013040301
ProcessProductionSystem = pprs_2013040301
#FIX: Exception in registerOutpuData
Workflow = wo_2013041101
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p2
{
Core = co_2013040301
Interfaces = if_2013040301
ILCTransformationSystem = ts_2013040301
ProcessProductionSystem = pprs_2013040301
#FIX: ApplicationScript was loosing the arguments
#NEW: StdHepCutJava application, to be completed
Workflow = wo_2013041001
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v18r0p0
{
#FIX: prevent deleting things that are not in the dict
#CHANGE: Use GenProcessID as ProcessID in Mokka
Core = co_2013040301
#FIX: prevent deleting things that are not in the dict
#CHANGE: Add support for the ProcessID meta data
#NEW: Script to get the info about a file or a prod
Interfaces = if_2013040301
#NEW: changed name
ILCTransformationSystem = ts_2013040301
#CHANGE: Drop the DataRecoveryAgent as it's in ILCTransformationSystem
ProcessProductionSystem = pprs_2013040301
#CHANGE: Some reshuffling: promote number of event resolution to ModuleBase
#CHANGE: Register all the meta data to the daughters
#NEW: Finalize ILDRegisterOutputData
Workflow = wo_2013040301
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p6
{
#CHANGE: Use our Transformation class
#CHANGE: Promote setILDConfig to ProductionJob
#FIX: fix this ILDConfig handling
Interfaces = if_2013032702
#NEW: Transformation class to implement missing checkLimitedPlugin method
#CHANGE: If max_tasks is <0, process all
TransformationSystem = ts_2013032701
#CHANGE: Fix the metadata registration to have less burden on the service
#CHANGE: simplify the logic in every module, promote stuff to ModuleBase
Workflow = wo_2013032701
Core = co_2013032501
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p5
{
Core = co_2013032501
#NEW:Script to add tasks to (plugin) Limited transformations
#NEW: Script to upload files to a storage element with path and name based on metadata, and register the metadata
Interfaces = if_2013032601
Workflow = wo_2013032503
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
#NEW: Add ILC transformation plugin
TransformationSystem = ts_2013032601
}
v17r3p4
{
Core = co_2013032501
Interfaces = if_2013032201
#FIX: fix the copy path, missed the os.path.join
Workflow = wo_2013032503
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p3
{
Core = co_2013032501
Interfaces = if_2013032201
#CHANGE: Add more messages
Workflow = wo_2013032502
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p2
{
#FIX: Add message to tell user that software installation was done
Core = co_2013032501
Interfaces = if_2013032201
Workflow = wo_2013032501
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p1
{
Core = co_2013032201
Interfaces = if_2013032201
#FIX: Correct tag
Workflow = wo_2013032501
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r3p0
{
#CHANGE: Get all the file meta data
Core = co_2013032201
#NEW: ILDProductionJob and utilities
Interfaces = if_2013032201
#CHANGE: Get all the ile meta data, and add ILDRegisterOutputData
Workflow = wo_2013032201
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r2p3
{
Core = co_2013031801
#NEW: CLI find utility
Interfaces = if_2013032001
Workflow = wo_2013031801
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r2p2
{
Core = co_2013031801
Interfaces = if_2013031801
#FIX: Bad import
Workflow = wo_2013031802
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r2p1
{
#CHANGE: Merge the resolveIFPaths and resolveOFnames
#CHANGE: Merge scripts, use gLogger
Core = co_2013031801
#CHANGE: Merge scripts, use gLogger
Interfaces = if_2013031801
#CHANGE: Result of the merge of the resolveIFPaths and resolveOFnames
Workflow = wo_2013031801
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
OverlaySystem = os_2013020501
}
v17r1p6
{
OverlaySystem = os_2013020501
Interfaces = if_2013031201
Core = co_2013031202
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p5
{
OverlaySystem = os_2013020501
Interfaces = if_2013031201
#FIX: bug fix in TARsoft
Core = co_2013031202
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p4
{
OverlaySystem = os_2013020501
#FIX: Changed import order
Interfaces = if_2013031201
#FIX: Changed import order
Core = co_2013031201
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p3
{
OverlaySystem = os_2013020501
#FIX: Changed import order
Interfaces = if_2013031101
#FIX: Changed import order
Core = co_2013031101
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p2
{
OverlaySystem = os_2013020501
#CHANGE: Update scripts to actual scripts
Interfaces = if_2013031101
Core = co_2013031101
#CHANGE: Removed unused imports
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p1
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
#CHANGE: Reshuffle the TARsoft utility a bit more
Core = co_2013031101
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r1p0
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
Core = co_2013030802
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v17r0p0
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
Core = co_2013011801
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r9p2
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
#FIX: Import typo
Core = co_2013030802
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r9p1
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
#FIX: Don't check the md5sum of md5 summary file as it's never going to match
Core = co_2013030801
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r9p0
{
OverlaySystem = os_2013020501
Interfaces = if_2013021901
#CHANGE: always put the lib directory (if available) in the LD_LIBRARY_PATH
#CHANGE: Don't bother with shared area if the local platform is incompatible with all supported platforms
#CHANGE: add support for md5sum of software tar balls, both at creation and installation
#CHANGE: Add limit in validity of lock file during installation
Core = co_2013030701
Workflow = wo_2013020701
#CHANGE: Remove software only from the shared area
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r8p2
{
OverlaySystem = os_2013020501
#FIX: super() initialization in Application
Interfaces = if_2013021901
Core = co_2013011801
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r8p1
{
OverlaySystem = os_2013020501
#FIX: super() initialization in Application
Interfaces = if_2013021901
Core = co_2013011801
Workflow = wo_2013020701
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r8p0
{
#CHANGE: Proper init of Client
OverlaySystem = os_2013020501
#FIX: Error message parsing
#CHANGE: use super() for class inheritance
Interfaces = if_2013020701
Core = co_2013011801
#CHANGE: Add more error printing in the std.out for easier debugging
#CHANGE: use super() for class inheritance
Workflow = wo_2013020701
#CHANGE: Proper init of Client
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r7p1
{
#FIX: Missing proper Client instanciation
OverlaySystem = os_2013020501
Interfaces = if_2013011802
Core = co_2013011801
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r7p0
{
OverlaySystem = os_2012072701
Interfaces = if_2013011802
Core = co_2013011801
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r6p0
{
OverlaySystem = os_2012072701
Interfaces = if_2013011802
Core = co_2013011801
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r5p2
{
OverlaySystem = os_2012072701
#CHANGE: recover from bad sandbox structure
Interfaces = if_2013011802
#CHANGE: allow choosing the user prefix in the user LFNs.
Core = co_2013011801
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r5p1
{
OverlaySystem = os_2012072701
Core = co_2012112601
Interfaces = if_2012120701
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r5p0
{
OverlaySystem = os_2012072701
Core = co_2012112601
Interfaces = if_2012120701
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r4p0
{
OverlaySystem = os_2012072701
Core = co_2012112601
#CHANGE: Some log levels are readjusted
Interfaces = if_2012120701
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r3p0
{
OverlaySystem = os_2012072701
Core = co_2012112601
#CHANGE: Some log levels are readjusted
Interfaces = if_2012120701
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r2p0
{
OverlaySystem = os_2012072701
Core = co_2012112601
Interfaces = if_2012112601
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r1p0
{
OverlaySystem = os_2012072701
Core = co_2012112601
Interfaces = if_2012112601
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
Doc = doc_2012112001
}
v16r0p0
{
OverlaySystem = os_2012072701
#CHANGE: Many things related to documentation
Core = co_2012112601
#CHANGE: Many things related to documentation
Interfaces = if_2012112601
#CHANGE: Many things related to documentation
Workflow = wo_2012112601
ProcessProductionSystem = pprs_2012072701
#NEW: Doc folder containing epydoc config
Doc = doc_2012112001
}
v14r0p0
{
OverlaySystem = os_2012072701
Core = co_2012101202
Interfaces = if_2012091101
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r2p3
{
OverlaySystem = os_2012072701
#CHANGE: Refactor a bit and make sure that a broken installation is fixed
Core = co_2012110702
Interfaces = if_2012091101
Workflow = wo_2012110501
ProcessProductionSystem = pprs_2012110601
}
v13r2p2
{
OverlaySystem = os_2012072701
#BUGFIX: Fix return value of install method
Core = co_2012110603
Interfaces = if_2012091101
Workflow = wo_2012110501
ProcessProductionSystem = pprs_2012110601
}
v13r2p1
{
OverlaySystem = os_2012072701
#CHANGE: Added method for listing any directory
Core = co_2012110602
Interfaces = if_2012091101
Workflow = wo_2012110501
#CHANGE: Added dumping of areas in the logs of InstallSoft
ProcessProductionSystem = pprs_2012110601
}
v13r2p0
{
OverlaySystem = os_2012072701
#CHANGE: Change the TARSoft utility to allow for locking of the area where software is installed
Core = co_2012110601
Interfaces = if_2012091101
Workflow = wo_2012110501
ProcessProductionSystem = pprs_2012072701
}
v13r1p8
{
OverlaySystem = os_2012072701
#CHANGE: Remove creation of REC and DST files in LCSIM if it's not in the input steering file
Core = co_2012110501
Interfaces = if_2012091101
#CHANGE: Do not create the .lcsim folder if it's already there, and rename the job.lcsim using the step number
Workflow = wo_2012110501
ProcessProductionSystem = pprs_2012072701
}
v13r1p7
{
OverlaySystem = os_2012072701
#FIX: add support for Overlay in ILD_DBD
Core = co_2012101202
Interfaces = if_2012091101
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r1p6
{
OverlaySystem = os_2012072701
#FIX: add support for Overlay in ILD_DBD
Core = co_2012101201
Interfaces = if_2012091101
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r1p5
{
OverlaySystem = os_2012072701
#FIX: Add proper support for sl6
Core = co_2012091201
Interfaces = if_2012091101
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r1p4
{
OverlaySystem = os_2012072701
#FIX: Create the shared area even is the directory is not one
Core = co_2012091102
Interfaces = if_2012091101
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r1p3
{
OverlaySystem = os_2012072701
#FIX: Added gcc44 support for PNNL (slc6)
Core = co_2012091101
#BUGFIX: Fix the SIDProduction, Production, LCSIM
Interfaces = if_2012091101
#BUGFIX: Make sure Marlin still uses empty GearFile if not set by user.
Workflow = wo_2012091101
ProcessProductionSystem = pprs_2012072701
}
v13r1p2