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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
|
// ----------------------------------------------------------------------
//
// definition of ParameterSet's function members
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
// prerequisite source files and headers
// ----------------------------------------------------------------------
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/Registry.h"
#include "FWCore/ParameterSet/src/split.h"
#include "FWCore/Utilities/interface/Algorithms.h"
#include "FWCore/Utilities/interface/Digest.h"
#include "FWCore/Utilities/interface/EDMException.h"
#include "DataFormats/Provenance/interface/ModuleDescription.h"
#include <algorithm>
#include <iostream>
#include <sstream>
#include <cassert>
// ----------------------------------------------------------------------
// class invariant checker
// ----------------------------------------------------------------------
namespace edm {
namespace pset::exceptions {
void throwWrongNumberOfElements(std::string const& iName, size_t iExpected, size_t iGot) {
throw Exception(errors::Configuration) << "The parameter '" << iName << "' should have " << iExpected
<< " elements, but has " << iGot << " elements in the configuration.\n";
}
} // namespace pset::exceptions
void ParameterSet::invalidateRegistration(std::string const& nameOfTracked) {
// We have added a new parameter. Invalidate the ID.
if (isRegistered()) {
id_ = ParameterSetID();
if (!nameOfTracked.empty()) {
// Give a warning (informational for now).
LogInfo("ParameterSet") << "Warning: You have added a new tracked parameter\n"
<< "'" << nameOfTracked << "' to a previously registered parameter set.\n"
<< "This is a bad idea because the new parameter(s) will not be recorded.\n"
<< "Use the forthcoming ParameterSetDescription facility instead.\n"
<< "A warning is given only for the first such parameter in a pset.\n";
}
}
assert(!isRegistered());
}
// ----------------------------------------------------------------------
// constructors
// ----------------------------------------------------------------------
ParameterSet::ParameterSet() : tbl_(), psetTable_(), vpsetTable_(), id_() {}
// ----------------------------------------------------------------------
// from coded string
ParameterSet::ParameterSet(std::string_view code) : tbl_(), psetTable_(), vpsetTable_(), id_() {
if (!fromString(code)) {
throw Exception(errors::Configuration, "InvalidInput")
<< "The encoded configuration string "
<< "passed to a ParameterSet during construction is invalid:\n"
<< code;
}
}
// ----------------------------------------------------------------------
// from coded string and ID.
ParameterSet::ParameterSet(std::string_view code, ParameterSetID const& id)
: tbl_(), psetTable_(), vpsetTable_(), id_(id) {
if (!fromString(code)) {
throw Exception(errors::Configuration, "InvalidInput")
<< "The encoded configuration string "
<< "passed to a ParameterSet during construction is invalid:\n"
<< code;
}
}
void ParameterSet::registerFromString(std::string const& rep) {
// from coded string. Will cause registration
cms::Digest dg(rep);
edm::ParameterSetID psID(dg.digest().toString());
edm::ParameterSet ps(rep, psID);
pset::Registry::instance()->insertMapped(ps);
}
ParameterSetID ParameterSet::emptyParameterSetID() { // const
cms::Digest newDigest;
ParameterSet().toDigest(newDigest);
return ParameterSetID(newDigest.digest().toString());
}
void ParameterSet::copyForModify(ParameterSet const& other) {
ParameterSet temp(other);
swap(temp);
id_ = ParameterSetID();
}
void ParameterSet::swap(ParameterSet& other) {
tbl_.swap(other.tbl_);
psetTable_.swap(other.psetTable_);
vpsetTable_.swap(other.vpsetTable_);
id_.swap(other.id_);
}
ParameterSet const& ParameterSet::registerIt() {
if (!isRegistered()) {
calculateID();
pset::Registry::instance()->insertMapped(*this);
}
return *this;
}
std::unique_ptr<ParameterSet> ParameterSet::popParameterSet(std::string const& name) {
assert(!isRegistered());
psettable::iterator it = psetTable_.find(name);
assert(it != psetTable_.end());
auto pset = std::make_unique<ParameterSet>();
std::swap(*pset, it->second.psetForUpdate());
psetTable_.erase(it);
return pset;
}
void ParameterSet::eraseSimpleParameter(std::string const& name) {
assert(!isRegistered());
table::iterator it = tbl_.find(name);
assert(it != tbl_.end());
tbl_.erase(it);
}
void ParameterSet::eraseOrSetUntrackedParameterSet(std::string const& name) {
assert(!isRegistered());
psettable::iterator it = psetTable_.find(name);
assert(it != psetTable_.end());
ParameterSet& pset = it->second.psetForUpdate();
if (pset.isRegistered()) {
it->second.setIsTracked(false);
} else {
psetTable_.erase(it);
}
}
std::vector<ParameterSet> ParameterSet::popVParameterSet(std::string const& name) {
assert(!isRegistered());
vpsettable::iterator it = vpsetTable_.find(name);
assert(it != vpsetTable_.end());
std::vector<ParameterSet> vpset;
std::swap(vpset, it->second.vpsetForUpdate());
vpsetTable_.erase(it);
return vpset;
}
void ParameterSet::calculateID() {
// make sure contained tracked psets are updated
for (auto& item : psetTable_) {
ParameterSet& pset = item.second.psetForUpdate();
if (!pset.isRegistered()) {
pset.registerIt();
}
item.second.updateID();
}
// make sure contained tracked vpsets are updated
for (vpsettable::iterator i = vpsetTable_.begin(), e = vpsetTable_.end(); i != e; ++i) {
i->second.registerPsetsAndUpdateIDs();
}
// The old, string base code is found below. Uncomment this and the assert to check whether
// there are discrepancies between old and new implementation.
// std::string stringrep;
// toString(stringrep);
// cms::Digest md5alg(stringrep);
// id_ = ParameterSetID(md5alg.digest().toString());
cms::Digest newDigest;
toDigest(newDigest);
id_ = ParameterSetID(newDigest.digest().toString());
// assert(md5alg.digest().toString() == newDigest.digest().toString());
assert(isRegistered());
}
// ----------------------------------------------------------------------
// identification
ParameterSetID ParameterSet::id() const {
// checks if valid
if (!isRegistered()) {
throw Exception(errors::LogicError) << "ParameterSet::id() called prematurely\n"
<< "before ParameterSet::registerIt() has been called.\n";
}
return id_;
}
void ParameterSet::setID(ParameterSetID const& id) { id_ = id; }
// ----------------------------------------------------------------------
// Entry-handling
// ----------------------------------------------------------------------
Entry const* ParameterSet::getEntryPointerOrThrow_(char const* name) const {
return getEntryPointerOrThrow_(std::string(name));
}
Entry const* ParameterSet::getEntryPointerOrThrow_(std::string const& name) const {
Entry const* result = retrieveUntracked(name);
if (result == nullptr)
throw Exception(errors::Configuration, "MissingParameter:")
<< "The required parameter '" << name << "' was not specified.\n";
return result;
}
template <typename T, typename U>
T first(std::pair<T, U> const& p) {
return p.first;
}
template <typename T, typename U>
U second(std::pair<T, U> const& p) {
return p.second;
}
Entry const& ParameterSet::retrieve(char const* name) const { return retrieve(std::string(name)); }
Entry const& ParameterSet::retrieve(std::string const& name) const {
table::const_iterator it = tbl_.find(name);
if (it == tbl_.end()) {
throw Exception(errors::Configuration, "MissingParameter:") << "Parameter '" << name << "' not found.";
}
if (it->second.isTracked() == false) {
if (name[0] == '@') {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Framework Error: Parameter '" << name << "' is incorrectly designated as tracked in the framework.";
} else {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Parameter '" << name << "' is designated as tracked in the code,\n"
<< "but is designated as untracked in the configuration file.\n"
<< "Please remove 'untracked' from the configuration file for parameter '" << name << "'.";
}
}
return it->second;
} // retrieve()
Entry const* ParameterSet::retrieveUntracked(char const* name) const { return retrieveUntracked(std::string(name)); }
Entry const* ParameterSet::retrieveUntracked(std::string const& name) const {
table::const_iterator it = tbl_.find(name);
if (it == tbl_.end())
return nullptr;
if (it->second.isTracked()) {
if (name[0] == '@') {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Framework Error: Parameter '" << name << "' is incorrectly designated as untracked in the framework.";
} else {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Parameter '" << name << "' is designated as untracked in the code,\n"
<< "but is not designated as untracked in the configuration file.\n"
<< "Please change the configuration file to 'untracked <type> " << name << "'.";
}
}
return &it->second;
} // retrieve()
ParameterSetEntry const& ParameterSet::retrieveParameterSet(std::string const& name) const {
psettable::const_iterator it = psetTable_.find(name);
if (it == psetTable_.end()) {
throw Exception(errors::Configuration, "MissingParameter:") << "ParameterSet '" << name << "' not found.";
}
if (it->second.isTracked() == false) {
if (name[0] == '@') {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Framework Error: ParameterSet '" << name << "' is incorrectly designated as tracked in the framework.";
} else {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "ParameterSet '" << name << "' is designated as tracked in the code,\n"
<< "but is designated as untracked in the configuration file.\n"
<< "Please remove 'untracked' from the configuration file for parameter '" << name << "'.";
}
}
return it->second;
} // retrieve()
ParameterSetEntry const* ParameterSet::retrieveUntrackedParameterSet(std::string const& name) const {
psettable::const_iterator it = psetTable_.find(name);
if (it == psetTable_.end())
return nullptr;
if (it->second.isTracked()) {
if (name[0] == '@') {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "Framework Error: ParameterSet '" << name
<< "' is incorrectly designated as untracked in the framework.";
} else {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "ParameterSet '" << name << "' is designated as untracked in the code,\n"
<< "but is not designated as untracked in the configuration file.\n"
<< "Please change the configuration file to 'untracked <type> " << name << "'.";
}
}
return &it->second;
} // retrieve()
VParameterSetEntry const& ParameterSet::retrieveVParameterSet(std::string const& name) const {
vpsettable::const_iterator it = vpsetTable_.find(name);
if (it == vpsetTable_.end()) {
throw Exception(errors::Configuration, "MissingParameter:") << "VParameterSet '" << name << "' not found.";
}
if (it->second.isTracked() == false) {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "VParameterSet '" << name << "' is designated as tracked in the code,\n"
<< "but is designated as untracked in the configuration file.\n"
<< "Please remove 'untracked' from the configuration file for parameter '" << name << "'.";
}
return it->second;
} // retrieve()
VParameterSetEntry const* ParameterSet::retrieveUntrackedVParameterSet(std::string const& name) const {
vpsettable::const_iterator it = vpsetTable_.find(name);
if (it == vpsetTable_.end())
return nullptr;
if (it->second.isTracked()) {
throw Exception(errors::Configuration, "StatusMismatch:")
<< "VParameterSet '" << name << "' is designated as untracked in the code,\n"
<< "but is not designated as untracked in the configuration file.\n"
<< "Please change the configuration file to 'untracked <type> " << name << "'.";
}
return &it->second;
} // retrieve()
Entry const* ParameterSet::retrieveUnknown(char const* name) const { return retrieveUnknown(std::string(name)); }
Entry const* ParameterSet::retrieveUnknown(std::string const& name) const {
table::const_iterator it = tbl_.find(name);
if (it == tbl_.end()) {
return nullptr;
}
return &it->second;
}
ParameterSetEntry const* ParameterSet::retrieveUnknownParameterSet(std::string const& name) const {
psettable::const_iterator it = psetTable_.find(name);
if (it == psetTable_.end()) {
return nullptr;
}
return &it->second;
}
VParameterSetEntry const* ParameterSet::retrieveUnknownVParameterSet(std::string const& name) const {
vpsettable::const_iterator it = vpsetTable_.find(name);
if (it == vpsetTable_.end()) {
return nullptr;
}
return &it->second;
}
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
std::string ParameterSet::getParameterAsString(std::string const& name) const {
if (existsAs<ParameterSet>(name)) {
return retrieveUnknownParameterSet(name)->toString();
} else if (existsAs<std::vector<ParameterSet> >(name)) {
return retrieveUnknownVParameterSet(name)->toString();
} else if (exists(name)) {
return retrieveUnknown(name)->toString();
} else {
throw Exception(errors::Configuration, "getParameterAsString")
<< "Cannot find parameter " << name << " in " << *this;
}
}
// ----------------------------------------------------------------------
// ----------------------------------------------------------------------
void ParameterSet::insert(bool okay_to_replace, char const* name, Entry const& value) {
insert(okay_to_replace, std::string(name), value);
}
void ParameterSet::insert(bool okay_to_replace, std::string const& name, Entry const& value) {
// We should probably get rid of 'okay_to_replace', which will
// simplify the logic in this function.
table::iterator it = tbl_.find(name);
if (it == tbl_.end()) {
if (!tbl_.insert(std::make_pair(name, value)).second)
throw Exception(errors::Configuration, "InsertFailure") << "cannot insert " << name << " into a ParameterSet\n";
} else if (okay_to_replace) {
it->second = value;
}
} // insert()
void ParameterSet::insertParameterSet(bool okay_to_replace, std::string const& name, ParameterSetEntry const& entry) {
// We should probably get rid of 'okay_to_replace', which will
// simplify the logic in this function.
psettable::iterator it = psetTable_.find(name);
if (it == psetTable_.end()) {
if (!psetTable_.insert(std::make_pair(name, entry)).second)
throw Exception(errors::Configuration, "InsertFailure") << "cannot insert " << name << " into a ParameterSet\n";
} else if (okay_to_replace) {
it->second = entry;
}
} // insert()
void ParameterSet::insertVParameterSet(bool okay_to_replace,
std::string const& name,
VParameterSetEntry const& entry) {
// We should probably get rid of 'okay_to_replace', which will
// simplify the logic in this function.
vpsettable::iterator it = vpsetTable_.find(name);
if (it == vpsetTable_.end()) {
if (!vpsetTable_.insert(std::make_pair(name, entry)).second)
throw Exception(errors::Configuration, "InsertFailure")
<< "cannot insert " << name << " into a VParameterSet\n";
} else if (okay_to_replace) {
it->second = entry;
}
} // insert()
void ParameterSet::augment(ParameterSet const& from) {
// This preemptive invalidation may be more agressive than necessary.
invalidateRegistration(std::string());
if (&from == this) {
return;
}
for (table::const_iterator b = from.tbl_.begin(), e = from.tbl_.end(); b != e; ++b) {
this->insert(false, b->first, b->second);
}
for (psettable::const_iterator b = from.psetTable_.begin(), e = from.psetTable_.end(); b != e; ++b) {
this->insertParameterSet(false, b->first, b->second);
}
for (vpsettable::const_iterator b = from.vpsetTable_.begin(), e = from.vpsetTable_.end(); b != e; ++b) {
this->insertVParameterSet(false, b->first, b->second);
}
} // augment()
void ParameterSet::copyFrom(ParameterSet const& from, std::string const& name) {
invalidateRegistration(std::string());
if (from.existsAs<ParameterSet>(name)) {
this->insertParameterSet(false, name, *(from.retrieveUnknownParameterSet(name)));
} else if (from.existsAs<std::vector<ParameterSet> >(name)) {
this->insertVParameterSet(false, name, *(from.retrieveUnknownVParameterSet(name)));
} else if (from.exists(name)) {
this->insert(false, name, *(from.retrieveUnknown(name)));
} else {
throw Exception(errors::Configuration, "copyFrom") << "Cannot find parameter " << name << " in " << from;
}
}
ParameterSet* ParameterSet::getPSetForUpdate(std::string const& name, bool& isTracked) {
assert(!isRegistered());
isTracked = false;
psettable::iterator it = psetTable_.find(name);
if (it == psetTable_.end())
return nullptr;
isTracked = it->second.isTracked();
return &it->second.psetForUpdate();
}
VParameterSetEntry* ParameterSet::getPSetVectorForUpdate(std::string const& name) {
assert(!isRegistered());
vpsettable::iterator it = vpsetTable_.find(name);
if (it == vpsetTable_.end())
return nullptr;
return &it->second;
}
// ----------------------------------------------------------------------
// coding
// ----------------------------------------------------------------------
void ParameterSet::toString(std::string& rep) const { toStringImp(rep, false); }
void ParameterSet::allToString(std::string& rep) const { toStringImp(rep, true); }
void ParameterSet::toStringImp(std::string& rep, bool useAll) const {
// make sure the PSets get filled
if (empty()) {
rep += "<>";
return;
}
size_t size = 1;
for (table::const_iterator b = tbl_.begin(), e = tbl_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
size += 2;
size += b->first.size();
size += b->second.sizeOfString();
}
}
for (psettable::const_iterator b = psetTable_.begin(), e = psetTable_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
size += 2;
size += b->first.size();
size += b->first.size();
size += b->first.size();
size += sizeof(ParameterSetID);
}
}
for (vpsettable::const_iterator b = vpsetTable_.begin(), e = vpsetTable_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
size += 2;
size += b->first.size();
size += sizeof(ParameterSetID) * b->second.size();
}
}
rep.reserve(rep.size() + size);
rep += '<';
std::string start;
std::string const between(";");
for (table::const_iterator b = tbl_.begin(), e = tbl_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
rep += start;
rep += b->first;
rep += '=';
b->second.toString(rep);
start = between;
}
}
for (psettable::const_iterator b = psetTable_.begin(), e = psetTable_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
rep += start;
rep += b->first;
rep += '=';
b->second.toString(rep);
start = between;
}
}
for (vpsettable::const_iterator b = vpsetTable_.begin(), e = vpsetTable_.end(); b != e; ++b) {
if (useAll || b->second.isTracked()) {
rep += start;
rep += b->first;
rep += '=';
b->second.toString(rep);
start = between;
}
}
rep += '>';
} // to_string()
void ParameterSet::toDigest(cms::Digest& digest) const {
digest.append("<", 1);
bool started = false;
for (table::const_iterator b = tbl_.begin(), e = tbl_.end(); b != e; ++b) {
if (b->second.isTracked()) {
if (started)
digest.append(";", 1);
digest.append(b->first);
digest.append("=", 1);
b->second.toDigest(digest);
started = true;
}
}
for (psettable::const_iterator b = psetTable_.begin(), e = psetTable_.end(); b != e; ++b) {
if (b->second.isTracked()) {
if (started)
digest.append(";", 1);
digest.append(b->first);
digest.append("=", 1);
b->second.toDigest(digest);
started = true;
}
}
for (vpsettable::const_iterator b = vpsetTable_.begin(), e = vpsetTable_.end(); b != e; ++b) {
if (b->second.isTracked()) {
if (started)
digest.append(";", 1);
digest.append(b->first);
digest.append("=", 1);
b->second.toDigest(digest);
}
}
digest.append(">", 1);
}
std::string ParameterSet::toString() const {
std::string result;
toString(result);
return result;
}
// ----------------------------------------------------------------------
bool ParameterSet::fromString(std::string_view from) {
if (from.size() < 2 or from.front() != '<' or from.back() != '>') {
return false;
}
std::string_view remaining = from;
remaining = remaining.substr(1, from.size() - 2);
tbl_.clear(); // precaution
while (not remaining.empty()) {
// locate required name/value separator
auto q = remaining.find_first_of('=');
if (q == remaining.npos)
return false;
// form name unique to this ParameterSet
auto name = remaining.substr(0, q);
if (tbl_.find(name) != tbl_.end())
return false;
remaining = remaining.substr(q + 1);
std::string_view rep = remaining.substr(0, remaining.find_first_of(';'));
// entries are generically of the form tracked-type-rep
if (rep[1] == 'Q') {
ParameterSetEntry psetEntry(rep);
if (!psetTable_.emplace(name, psetEntry).second) {
return false;
}
} else if (rep[1] == 'q') {
VParameterSetEntry vpsetEntry(rep);
if (!vpsetTable_.emplace(name, vpsetEntry).second) {
return false;
}
} else {
// form value and insert name/value pair
auto bounds = Entry::bounds(remaining, rep.size());
if (bounds.empty()) {
return false;
}
remaining = remaining.substr(bounds.size());
if (not remaining.empty() and remaining.front() != ';') {
return false;
}
Entry value(std::string(name), bounds);
if (rep[1] == 'P') {
ParameterSetEntry psetEntry(value.getPSet(), value.isTracked());
if (!psetTable_.emplace(name, psetEntry).second) {
return false;
}
} else if (rep[1] == 'p') {
VParameterSetEntry vpsetEntry(value.getVPSet(), value.isTracked());
if (!vpsetTable_.emplace(name, vpsetEntry).second) {
return false;
}
} else {
if (!tbl_.emplace(name, value).second) {
return false;
}
}
}
auto newStart = remaining.find_first_of(';');
if (newStart == remaining.npos)
break;
remaining = remaining.substr(newStart + 1);
}
return true;
} // from_string()
// ----------------------------------------------------------------------
std::string_view ParameterSet::extent(std::string_view from) {
if (from.size() < 2 or from.front() != '<') {
return {};
}
std::string_view remaining = from;
remaining.remove_prefix(1);
while (not remaining.empty() and remaining[0] != '>') {
auto start_index = remaining.find_first_of('=');
if (remaining.npos == start_index) {
return {};
}
remaining.remove_prefix(start_index + 1);
auto end_index = remaining.find_first_of(";>");
if (remaining.npos == end_index) {
return {};
}
auto bounds = edm::Entry::bounds(remaining, end_index);
if (bounds.empty()) {
return {};
}
remaining.remove_prefix(bounds.size());
if (not remaining.empty() and remaining[0] == ';') {
remaining.remove_prefix(1);
}
}
if (remaining.empty()) {
return {};
}
from.remove_suffix(remaining.size() - 1);
return from;
}
// ----------------------------------------------------------------------
std::vector<FileInPath>::size_type ParameterSet::getAllFileInPaths(std::vector<FileInPath>& output) const {
std::vector<FileInPath>::size_type count = 0;
table::const_iterator it = tbl_.begin();
table::const_iterator end = tbl_.end();
while (it != end) {
Entry const& e = it->second;
if (e.typeCode() == 'F') {
++count;
output.push_back(e.getFileInPath());
}
++it;
}
return count;
}
std::vector<std::string> ParameterSet::getParameterNames() const {
using std::placeholders::_1;
std::vector<std::string> returnValue;
std::transform(tbl_.begin(),
tbl_.end(),
back_inserter(returnValue),
std::bind(&std::pair<std::string const, Entry>::first, _1));
std::transform(psetTable_.begin(),
psetTable_.end(),
back_inserter(returnValue),
std::bind(&std::pair<std::string const, ParameterSetEntry>::first, _1));
std::transform(vpsetTable_.begin(),
vpsetTable_.end(),
back_inserter(returnValue),
std::bind(&std::pair<std::string const, VParameterSetEntry>::first, _1));
return returnValue;
}
bool ParameterSet::exists(std::string const& parameterName) const {
return (tbl_.find(parameterName) != tbl_.end() || psetTable_.find(parameterName) != psetTable_.end() ||
vpsetTable_.find(parameterName) != vpsetTable_.end());
}
ParameterSet ParameterSet::trackedPart() const {
ParameterSet result;
for (table::const_iterator tblItr = tbl_.begin(); tblItr != tbl_.end(); ++tblItr) {
if (tblItr->second.isTracked()) {
result.tbl_.insert(*tblItr);
}
}
for (psettable::const_iterator psetItr = psetTable_.begin(); psetItr != psetTable_.end(); ++psetItr) {
if (psetItr->second.isTracked()) {
result.addParameter<ParameterSet>(psetItr->first, psetItr->second.pset().trackedPart());
}
}
for (vpsettable::const_iterator vpsetItr = vpsetTable_.begin(); vpsetItr != vpsetTable_.end(); ++vpsetItr) {
if (vpsetItr->second.isTracked()) {
VParameterSet vresult;
std::vector<ParameterSet> const& this_vpset = vpsetItr->second.vpset();
typedef std::vector<ParameterSet>::const_iterator Iter;
for (Iter i = this_vpset.begin(), e = this_vpset.end(); i != e; ++i) {
vresult.push_back(i->trackedPart());
}
result.addParameter<VParameterSet>(vpsetItr->first, vresult);
}
}
return result;
}
/*
// Comment out unneeded function
size_t
ParameterSet::getAllParameterSetNames(std::vector<std::string>& output) const {
using std::placeholders::_1;
std::transform(psetTable_.begin(), psetTable_.end(), back_inserter(output),
std::bind(&std::pair<std::string const, ParameterSetEntry>::first, _1));
return output.size();
}
*/
size_t ParameterSet::getParameterSetNames(std::vector<std::string>& output, bool trackiness) const {
for (psettable::const_iterator psetItr = psetTable_.begin(); psetItr != psetTable_.end(); ++psetItr) {
if (psetItr->second.isTracked() == trackiness) {
output.push_back(psetItr->first);
}
}
return output.size();
}
size_t ParameterSet::getParameterSetVectorNames(std::vector<std::string>& output, bool trackiness) const {
for (vpsettable::const_iterator vpsetItr = vpsetTable_.begin(); vpsetItr != vpsetTable_.end(); ++vpsetItr) {
if (vpsetItr->second.isTracked() == trackiness) {
output.push_back(vpsetItr->first);
}
}
return output.size();
}
size_t ParameterSet::getNamesByCode_(char code, bool trackiness, std::vector<std::string>& output) const {
size_t count = 0;
if (code == 'Q') {
return getParameterSetNames(output, trackiness);
}
if (code == 'q') {
return getParameterSetVectorNames(output, trackiness);
}
//deal with string encoding change by also looking for old code values
if (code == 'z') {
count += getNamesByCode_('s', trackiness, output);
}
if (code == 'Z') {
count += getNamesByCode_('S', trackiness, output);
}
table::const_iterator it = tbl_.begin();
table::const_iterator end = tbl_.end();
while (it != end) {
Entry const& e = it->second;
if (e.typeCode() == code && e.isTracked() == trackiness) { // if it is a vector of ParameterSet
++count;
output.push_back(it->first); // save the name
}
++it;
}
return count;
}
template <>
std::vector<std::string> ParameterSet::getParameterNamesForType<FileInPath>(bool trackiness) const {
std::vector<std::string> result;
getNamesByCode_('F', trackiness, result);
return result;
}
bool operator==(ParameterSet const& a, ParameterSet const& b) {
if (a.isRegistered() && b.isRegistered()) {
return (a.id() == b.id());
}
return isTransientEqual(a.trackedPart(), b.trackedPart());
}
bool isTransientEqual(ParameterSet const& a, ParameterSet const& b) {
if (a.tbl().size() != b.tbl().size()) {
return false;
}
if (a.psetTable().size() != b.psetTable().size()) {
return false;
}
if (a.vpsetTable().size() != b.vpsetTable().size()) {
return false;
}
typedef ParameterSet::table::const_iterator Ti;
for (Ti i = a.tbl().begin(), e = a.tbl().end(), j = b.tbl().begin(), f = b.tbl().end(); i != e && j != f;
++i, ++j) {
if (*i != *j) {
return false;
}
}
typedef ParameterSet::psettable::const_iterator Pi;
for (Pi i = a.psetTable().begin(), e = a.psetTable().end(), j = b.psetTable().begin(), f = b.psetTable().end();
i != e && j != f;
++i, ++j) {
if (i->first != j->first) {
return false;
}
if (i->second.isTracked() != j->second.isTracked()) {
return false;
}
if (!isTransientEqual(i->second.pset(), j->second.pset())) {
return false;
}
}
typedef ParameterSet::vpsettable::const_iterator PVi;
for (PVi i = a.vpsetTable().begin(), e = a.vpsetTable().end(), j = b.vpsetTable().begin(), f = b.vpsetTable().end();
i != e && j != f;
++i, ++j) {
if (i->first != j->first) {
return false;
}
if (i->second.isTracked() != j->second.isTracked()) {
return false;
}
std::vector<ParameterSet> const& iv = i->second.vpset();
std::vector<ParameterSet> const& jv = j->second.vpset();
if (iv.size() != jv.size()) {
return false;
}
for (size_t k = 0; k < iv.size(); ++k) {
if (!isTransientEqual(iv[k], jv[k])) {
return false;
}
}
}
return true;
}
std::string ParameterSet::dump(unsigned int indent) const {
std::ostringstream os;
// indent a bit
std::string indentation(indent, ' ');
os << "{" << std::endl;
for (table::const_iterator i = tbl_.begin(), e = tbl_.end(); i != e; ++i) {
os << indentation << " " << i->first << ": " << i->second << std::endl;
}
for (psettable::const_iterator i = psetTable_.begin(), e = psetTable_.end(); i != e; ++i) {
// indent a bit
std::string n = i->first;
ParameterSetEntry const& pe = i->second;
os << indentation << " " << n << ": " << pe.dump(indent + 2) << std::endl;
}
for (vpsettable::const_iterator i = vpsetTable_.begin(), e = vpsetTable_.end(); i != e; ++i) {
// indent a bit
std::string n = i->first;
VParameterSetEntry const& pe = i->second;
os << indentation << " " << n << ": " << pe.dump(indent + 2) << std::endl;
}
os << indentation << "}";
return os.str();
}
std::ostream& operator<<(std::ostream& os, ParameterSet const& pset) {
os << pset.dump();
return os;
}
// Free function to return a parameterSet given its ID.
ParameterSet const& getParameterSet(ParameterSetID const& id) {
ParameterSet const* result = nullptr;
if (nullptr == (result = pset::Registry::instance()->getMapped(id))) {
throw Exception(errors::LogicError, "MissingParameterSet:") << "Parameter Set ID '" << id << "' not found.";
}
return *result;
}
ParameterSet const& getProcessParameterSetContainingModule(ModuleDescription const& moduleDescription) {
return getParameterSet(moduleDescription.mainParameterSetID());
}
void ParameterSet::deprecatedInputTagWarning(std::string const& name, std::string const& label) const {
LogWarning("Configuration") << "Warning:\n\tstring " << name << " = \"" << label << "\"\nis deprecated, "
<< "please update your config file to use\n\tInputTag " << name << " = " << label;
}
// specializations
// ----------------------------------------------------------------------
// Bool, vBool
template <>
bool ParameterSet::getParameter<bool>(std::string const& name) const {
return retrieve(name).getBool();
}
// ----------------------------------------------------------------------
// Int32, vInt32
template <>
int ParameterSet::getParameter<int>(std::string const& name) const {
return retrieve(name).getInt32();
}
template <>
std::vector<int> ParameterSet::getParameter<std::vector<int> >(std::string const& name) const {
return retrieve(name).getVInt32();
}
// ----------------------------------------------------------------------
// Int64, vInt64
template <>
long long ParameterSet::getParameter<long long>(std::string const& name) const {
return retrieve(name).getInt64();
}
template <>
std::vector<long long> ParameterSet::getParameter<std::vector<long long> >(std::string const& name) const {
return retrieve(name).getVInt64();
}
// ----------------------------------------------------------------------
// Uint32, vUint32
template <>
unsigned int ParameterSet::getParameter<unsigned int>(std::string const& name) const {
return retrieve(name).getUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getParameter<std::vector<unsigned int> >(std::string const& name) const {
return retrieve(name).getVUInt32();
}
// ----------------------------------------------------------------------
// Uint64, vUint64
template <>
unsigned long long ParameterSet::getParameter<unsigned long long>(std::string const& name) const {
return retrieve(name).getUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getParameter<std::vector<unsigned long long> >(
std::string const& name) const {
return retrieve(name).getVUInt64();
}
// ----------------------------------------------------------------------
// Double, vDouble
template <>
double ParameterSet::getParameter<double>(std::string const& name) const {
return retrieve(name).getDouble();
}
template <>
std::vector<double> ParameterSet::getParameter<std::vector<double> >(std::string const& name) const {
return retrieve(name).getVDouble();
}
// ----------------------------------------------------------------------
// String, vString
template <>
std::string ParameterSet::getParameter<std::string>(std::string const& name) const {
return retrieve(name).getString();
}
template <>
std::vector<std::string> ParameterSet::getParameter<std::vector<std::string> >(std::string const& name) const {
return retrieve(name).getVString();
}
// ----------------------------------------------------------------------
// FileInPath
template <>
FileInPath ParameterSet::getParameter<FileInPath>(std::string const& name) const {
return retrieve(name).getFileInPath();
}
// ----------------------------------------------------------------------
// InputTag
template <>
InputTag ParameterSet::getParameter<InputTag>(std::string const& name) const {
Entry const& e_input = retrieve(name);
switch (e_input.typeCode()) {
case 't': // InputTag
{
return e_input.getInputTag();
}
case 'S': // string Hex
{
std::string const& label = e_input.getString();
deprecatedInputTagWarning(name, label);
return InputTag(label);
}
case 'Z': // string Raw
{
std::string const& label = e_input.getString();
deprecatedInputTagWarning(name, label);
return InputTag(label);
}
}
throw Exception(errors::Configuration, "ValueError")
<< "type of " << name << " is expected to be InputTag or string (deprecated)";
}
// ----------------------------------------------------------------------
// VInputTag
template <>
std::vector<InputTag> ParameterSet::getParameter<std::vector<InputTag> >(std::string const& name) const {
return retrieve(name).getVInputTag();
}
// ----------------------------------------------------------------------
// ESInputTag
template <>
ESInputTag ParameterSet::getParameter<ESInputTag>(std::string const& name) const {
return retrieve(name).getESInputTag();
}
// ----------------------------------------------------------------------
// VESInputTag
template <>
std::vector<ESInputTag> ParameterSet::getParameter<std::vector<ESInputTag> >(std::string const& name) const {
return retrieve(name).getVESInputTag();
}
// ----------------------------------------------------------------------
// EventID
template <>
EventID ParameterSet::getParameter<EventID>(std::string const& name) const {
return retrieve(name).getEventID();
}
// ----------------------------------------------------------------------
// VEventID
template <>
std::vector<EventID> ParameterSet::getParameter<std::vector<EventID> >(std::string const& name) const {
return retrieve(name).getVEventID();
}
// ----------------------------------------------------------------------
// LuminosityBlockID
template <>
LuminosityBlockID ParameterSet::getParameter<LuminosityBlockID>(std::string const& name) const {
return retrieve(name).getLuminosityBlockID();
}
// ----------------------------------------------------------------------
// VLuminosityBlockID
template <>
std::vector<LuminosityBlockID> ParameterSet::getParameter<std::vector<LuminosityBlockID> >(
std::string const& name) const {
return retrieve(name).getVLuminosityBlockID();
}
// ----------------------------------------------------------------------
// EventRange
template <>
EventRange ParameterSet::getParameter<EventRange>(std::string const& name) const {
return retrieve(name).getEventRange();
}
// ----------------------------------------------------------------------
// VEventRange
template <>
std::vector<EventRange> ParameterSet::getParameter<std::vector<EventRange> >(std::string const& name) const {
return retrieve(name).getVEventRange();
}
// ----------------------------------------------------------------------
// LuminosityBlockRange
template <>
LuminosityBlockRange ParameterSet::getParameter<LuminosityBlockRange>(std::string const& name) const {
return retrieve(name).getLuminosityBlockRange();
}
// ----------------------------------------------------------------------
// VLuminosityBlockRange
template <>
std::vector<LuminosityBlockRange> ParameterSet::getParameter<std::vector<LuminosityBlockRange> >(
std::string const& name) const {
return retrieve(name).getVLuminosityBlockRange();
}
// ----------------------------------------------------------------------
// PSet, vPSet
template <>
ParameterSet ParameterSet::getParameter<ParameterSet>(std::string const& name) const {
return getParameterSet(name);
}
template <>
VParameterSet ParameterSet::getParameter<VParameterSet>(std::string const& name) const {
return getParameterSetVector(name);
}
// untracked parameters
// ----------------------------------------------------------------------
// Bool, vBool
template <>
bool ParameterSet::getUntrackedParameter<bool>(std::string const& name, bool const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getBool();
}
template <>
bool ParameterSet::getUntrackedParameter<bool>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getBool();
}
// ----------------------------------------------------------------------
// Int32, vInt32
template <>
int ParameterSet::getUntrackedParameter<int>(std::string const& name, int const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInt32();
}
template <>
int ParameterSet::getUntrackedParameter<int>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getInt32();
}
template <>
std::vector<int> ParameterSet::getUntrackedParameter<std::vector<int> >(std::string const& name,
std::vector<int> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInt32();
}
template <>
std::vector<int> ParameterSet::getUntrackedParameter<std::vector<int> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVInt32();
}
// ----------------------------------------------------------------------
// Uint32, vUint32
template <>
unsigned int ParameterSet::getUntrackedParameter<unsigned int>(std::string const& name,
unsigned int const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getUInt32();
}
template <>
unsigned int ParameterSet::getUntrackedParameter<unsigned int>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getUntrackedParameter<std::vector<unsigned int> >(
std::string const& name, std::vector<unsigned int> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getUntrackedParameter<std::vector<unsigned int> >(
std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVUInt32();
}
// ----------------------------------------------------------------------
// Uint64, vUint64
template <>
unsigned long long ParameterSet::getUntrackedParameter<unsigned long long>(
std::string const& name, unsigned long long const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getUInt64();
}
template <>
unsigned long long ParameterSet::getUntrackedParameter<unsigned long long>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getUntrackedParameter<std::vector<unsigned long long> >(
std::string const& name, std::vector<unsigned long long> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getUntrackedParameter<std::vector<unsigned long long> >(
std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVUInt64();
}
// ----------------------------------------------------------------------
// Int64, Vint64
template <>
long long ParameterSet::getUntrackedParameter<long long>(std::string const& name,
long long const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInt64();
}
template <>
long long ParameterSet::getUntrackedParameter<long long>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getInt64();
}
template <>
std::vector<long long> ParameterSet::getUntrackedParameter<std::vector<long long> >(
std::string const& name, std::vector<long long> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInt64();
}
template <>
std::vector<long long> ParameterSet::getUntrackedParameter<std::vector<long long> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVInt64();
}
// ----------------------------------------------------------------------
// Double, vDouble
template <>
double ParameterSet::getUntrackedParameter<double>(std::string const& name, double const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getDouble();
}
template <>
double ParameterSet::getUntrackedParameter<double>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getDouble();
}
template <>
std::vector<double> ParameterSet::getUntrackedParameter<std::vector<double> >(
std::string const& name, std::vector<double> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVDouble();
}
template <>
std::vector<double> ParameterSet::getUntrackedParameter<std::vector<double> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVDouble();
}
// ----------------------------------------------------------------------
// String, vString
template <>
std::string ParameterSet::getUntrackedParameter<std::string>(std::string const& name,
std::string const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getString();
}
template <>
std::string ParameterSet::getUntrackedParameter<std::string>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getString();
}
template <>
std::vector<std::string> ParameterSet::getUntrackedParameter<std::vector<std::string> >(
std::string const& name, std::vector<std::string> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVString();
}
template <>
std::vector<std::string> ParameterSet::getUntrackedParameter<std::vector<std::string> >(
std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVString();
}
// ----------------------------------------------------------------------
// FileInPath
template <>
FileInPath ParameterSet::getUntrackedParameter<FileInPath>(std::string const& name,
FileInPath const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getFileInPath();
}
template <>
FileInPath ParameterSet::getUntrackedParameter<FileInPath>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getFileInPath();
}
// ----------------------------------------------------------------------
// InputTag, VInputTag
template <>
InputTag ParameterSet::getUntrackedParameter<InputTag>(std::string const& name, InputTag const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInputTag();
}
template <>
InputTag ParameterSet::getUntrackedParameter<InputTag>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getInputTag();
}
template <>
std::vector<InputTag> ParameterSet::getUntrackedParameter<std::vector<InputTag> >(
std::string const& name, std::vector<InputTag> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInputTag();
}
template <>
std::vector<InputTag> ParameterSet::getUntrackedParameter<std::vector<InputTag> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVInputTag();
}
// ----------------------------------------------------------------------
// ESInputTag, VESInputTag
template <>
ESInputTag ParameterSet::getUntrackedParameter<ESInputTag>(std::string const& name,
ESInputTag const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getESInputTag();
}
template <>
ESInputTag ParameterSet::getUntrackedParameter<ESInputTag>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getESInputTag();
}
template <>
std::vector<ESInputTag> ParameterSet::getUntrackedParameter<std::vector<ESInputTag> >(
std::string const& name, std::vector<ESInputTag> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVESInputTag();
}
template <>
std::vector<ESInputTag> ParameterSet::getUntrackedParameter<std::vector<ESInputTag> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVESInputTag();
}
// ----------------------------------------------------------------------
// EventID, VEventID
template <>
EventID ParameterSet::getUntrackedParameter<EventID>(std::string const& name, EventID const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getEventID();
}
template <>
EventID ParameterSet::getUntrackedParameter<EventID>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getEventID();
}
template <>
std::vector<EventID> ParameterSet::getUntrackedParameter<std::vector<EventID> >(
std::string const& name, std::vector<EventID> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVEventID();
}
template <>
std::vector<EventID> ParameterSet::getUntrackedParameter<std::vector<EventID> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVEventID();
}
// ----------------------------------------------------------------------
// LuminosityBlockID, VLuminosityBlockID
template <>
LuminosityBlockID ParameterSet::getUntrackedParameter<LuminosityBlockID>(
std::string const& name, LuminosityBlockID const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getLuminosityBlockID();
}
template <>
LuminosityBlockID ParameterSet::getUntrackedParameter<LuminosityBlockID>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getLuminosityBlockID();
}
template <>
std::vector<LuminosityBlockID> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockID> >(
std::string const& name, std::vector<LuminosityBlockID> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVLuminosityBlockID();
}
template <>
std::vector<LuminosityBlockID> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockID> >(
std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVLuminosityBlockID();
}
// ----------------------------------------------------------------------
// EventRange, VEventRange
template <>
EventRange ParameterSet::getUntrackedParameter<EventRange>(std::string const& name,
EventRange const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getEventRange();
}
template <>
EventRange ParameterSet::getUntrackedParameter<EventRange>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getEventRange();
}
template <>
std::vector<EventRange> ParameterSet::getUntrackedParameter<std::vector<EventRange> >(
std::string const& name, std::vector<EventRange> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVEventRange();
}
template <>
std::vector<EventRange> ParameterSet::getUntrackedParameter<std::vector<EventRange> >(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVEventRange();
}
// ----------------------------------------------------------------------
// LuminosityBlockRange, VLuminosityBlockRange
template <>
LuminosityBlockRange ParameterSet::getUntrackedParameter<LuminosityBlockRange>(
std::string const& name, LuminosityBlockRange const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getLuminosityBlockRange();
}
template <>
LuminosityBlockRange ParameterSet::getUntrackedParameter<LuminosityBlockRange>(std::string const& name) const {
return getEntryPointerOrThrow_(name)->getLuminosityBlockRange();
}
template <>
std::vector<LuminosityBlockRange> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockRange> >(
std::string const& name, std::vector<LuminosityBlockRange> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVLuminosityBlockRange();
}
template <>
std::vector<LuminosityBlockRange> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockRange> >(
std::string const& name) const {
return getEntryPointerOrThrow_(name)->getVLuminosityBlockRange();
}
// specializations
// ----------------------------------------------------------------------
// Bool, vBool
template <>
bool ParameterSet::getParameter<bool>(char const* name) const {
return retrieve(name).getBool();
}
// ----------------------------------------------------------------------
// Int32, vInt32
template <>
int ParameterSet::getParameter<int>(char const* name) const {
return retrieve(name).getInt32();
}
template <>
std::vector<int> ParameterSet::getParameter<std::vector<int> >(char const* name) const {
return retrieve(name).getVInt32();
}
// ----------------------------------------------------------------------
// Int64, vInt64
template <>
long long ParameterSet::getParameter<long long>(char const* name) const {
return retrieve(name).getInt64();
}
template <>
std::vector<long long> ParameterSet::getParameter<std::vector<long long> >(char const* name) const {
return retrieve(name).getVInt64();
}
// ----------------------------------------------------------------------
// Uint32, vUint32
template <>
unsigned int ParameterSet::getParameter<unsigned int>(char const* name) const {
return retrieve(name).getUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getParameter<std::vector<unsigned int> >(char const* name) const {
return retrieve(name).getVUInt32();
}
// ----------------------------------------------------------------------
// Uint64, vUint64
template <>
unsigned long long ParameterSet::getParameter<unsigned long long>(char const* name) const {
return retrieve(name).getUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getParameter<std::vector<unsigned long long> >(char const* name) const {
return retrieve(name).getVUInt64();
}
// ----------------------------------------------------------------------
// Double, vDouble
template <>
double ParameterSet::getParameter<double>(char const* name) const {
return retrieve(name).getDouble();
}
template <>
std::vector<double> ParameterSet::getParameter<std::vector<double> >(char const* name) const {
return retrieve(name).getVDouble();
}
// ----------------------------------------------------------------------
// String, vString
template <>
std::string ParameterSet::getParameter<std::string>(char const* name) const {
return retrieve(name).getString();
}
template <>
std::vector<std::string> ParameterSet::getParameter<std::vector<std::string> >(char const* name) const {
return retrieve(name).getVString();
}
// ----------------------------------------------------------------------
// FileInPath
template <>
FileInPath ParameterSet::getParameter<FileInPath>(char const* name) const {
return retrieve(name).getFileInPath();
}
// ----------------------------------------------------------------------
// InputTag
template <>
InputTag ParameterSet::getParameter<InputTag>(char const* name) const {
Entry const& e_input = retrieve(name);
switch (e_input.typeCode()) {
case 't': // InputTag
{
return e_input.getInputTag();
}
case 'S': // string Hex
{
std::string const& label = e_input.getString();
deprecatedInputTagWarning(name, label);
return InputTag(label);
}
case 'Z': // string Raw
{
std::string const& label = e_input.getString();
deprecatedInputTagWarning(name, label);
return InputTag(label);
}
}
throw Exception(errors::Configuration, "ValueError")
<< "type of " << name << " is expected to be InputTag or string (deprecated)";
}
// ----------------------------------------------------------------------
// VInputTag
template <>
std::vector<InputTag> ParameterSet::getParameter<std::vector<InputTag> >(char const* name) const {
return retrieve(name).getVInputTag();
}
// ----------------------------------------------------------------------
// ESInputTag
template <>
ESInputTag ParameterSet::getParameter<ESInputTag>(char const* name) const {
return retrieve(name).getESInputTag();
}
// ----------------------------------------------------------------------
// VESInputTag
template <>
std::vector<ESInputTag> ParameterSet::getParameter<std::vector<ESInputTag> >(char const* name) const {
return retrieve(name).getVESInputTag();
}
// ----------------------------------------------------------------------
// EventID
template <>
EventID ParameterSet::getParameter<EventID>(char const* name) const {
return retrieve(name).getEventID();
}
// ----------------------------------------------------------------------
// VEventID
template <>
std::vector<EventID> ParameterSet::getParameter<std::vector<EventID> >(char const* name) const {
return retrieve(name).getVEventID();
}
// ----------------------------------------------------------------------
// LuminosityBlockID
template <>
LuminosityBlockID ParameterSet::getParameter<LuminosityBlockID>(char const* name) const {
return retrieve(name).getLuminosityBlockID();
}
// ----------------------------------------------------------------------
// VLuminosityBlockID
template <>
std::vector<LuminosityBlockID> ParameterSet::getParameter<std::vector<LuminosityBlockID> >(char const* name) const {
return retrieve(name).getVLuminosityBlockID();
}
// ----------------------------------------------------------------------
// EventRange
template <>
EventRange ParameterSet::getParameter<EventRange>(char const* name) const {
return retrieve(name).getEventRange();
}
// ----------------------------------------------------------------------
// VEventRange
template <>
std::vector<EventRange> ParameterSet::getParameter<std::vector<EventRange> >(char const* name) const {
return retrieve(name).getVEventRange();
}
// ----------------------------------------------------------------------
// LuminosityBlockRange
template <>
LuminosityBlockRange ParameterSet::getParameter<LuminosityBlockRange>(char const* name) const {
return retrieve(name).getLuminosityBlockRange();
}
// ----------------------------------------------------------------------
// VLuminosityBlockRange
template <>
std::vector<LuminosityBlockRange> ParameterSet::getParameter<std::vector<LuminosityBlockRange> >(
char const* name) const {
return retrieve(name).getVLuminosityBlockRange();
}
// ----------------------------------------------------------------------
// PSet, vPSet
template <>
ParameterSet ParameterSet::getParameter<ParameterSet>(char const* name) const {
return getParameterSet(name);
}
template <>
VParameterSet ParameterSet::getParameter<VParameterSet>(char const* name) const {
return getParameterSetVector(name);
}
// untracked parameters
// ----------------------------------------------------------------------
// Bool, vBool
template <>
bool ParameterSet::getUntrackedParameter<bool>(char const* name, bool const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getBool();
}
template <>
bool ParameterSet::getUntrackedParameter<bool>(char const* name) const {
return getEntryPointerOrThrow_(name)->getBool();
}
// ----------------------------------------------------------------------
// Int32, vInt32
template <>
int ParameterSet::getUntrackedParameter<int>(char const* name, int const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInt32();
}
template <>
int ParameterSet::getUntrackedParameter<int>(char const* name) const {
return getEntryPointerOrThrow_(name)->getInt32();
}
template <>
std::vector<int> ParameterSet::getUntrackedParameter<std::vector<int> >(char const* name,
std::vector<int> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInt32();
}
template <>
std::vector<int> ParameterSet::getUntrackedParameter<std::vector<int> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVInt32();
}
// ----------------------------------------------------------------------
// Uint32, vUint32
template <>
unsigned int ParameterSet::getUntrackedParameter<unsigned int>(char const* name,
unsigned int const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getUInt32();
}
template <>
unsigned int ParameterSet::getUntrackedParameter<unsigned int>(char const* name) const {
return getEntryPointerOrThrow_(name)->getUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getUntrackedParameter<std::vector<unsigned int> >(
char const* name, std::vector<unsigned int> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVUInt32();
}
template <>
std::vector<unsigned int> ParameterSet::getUntrackedParameter<std::vector<unsigned int> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVUInt32();
}
// ----------------------------------------------------------------------
// Uint64, vUint64
template <>
unsigned long long ParameterSet::getUntrackedParameter<unsigned long long>(
char const* name, unsigned long long const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getUInt64();
}
template <>
unsigned long long ParameterSet::getUntrackedParameter<unsigned long long>(char const* name) const {
return getEntryPointerOrThrow_(name)->getUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getUntrackedParameter<std::vector<unsigned long long> >(
char const* name, std::vector<unsigned long long> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVUInt64();
}
template <>
std::vector<unsigned long long> ParameterSet::getUntrackedParameter<std::vector<unsigned long long> >(
char const* name) const {
return getEntryPointerOrThrow_(name)->getVUInt64();
}
// ----------------------------------------------------------------------
// Int64, Vint64
template <>
long long ParameterSet::getUntrackedParameter<long long>(char const* name, long long const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInt64();
}
template <>
long long ParameterSet::getUntrackedParameter<long long>(char const* name) const {
return getEntryPointerOrThrow_(name)->getInt64();
}
template <>
std::vector<long long> ParameterSet::getUntrackedParameter<std::vector<long long> >(
char const* name, std::vector<long long> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInt64();
}
template <>
std::vector<long long> ParameterSet::getUntrackedParameter<std::vector<long long> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVInt64();
}
// ----------------------------------------------------------------------
// Double, vDouble
template <>
double ParameterSet::getUntrackedParameter<double>(char const* name, double const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getDouble();
}
template <>
double ParameterSet::getUntrackedParameter<double>(char const* name) const {
return getEntryPointerOrThrow_(name)->getDouble();
}
template <>
std::vector<double> ParameterSet::getUntrackedParameter<std::vector<double> >(
char const* name, std::vector<double> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVDouble();
}
template <>
std::vector<double> ParameterSet::getUntrackedParameter<std::vector<double> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVDouble();
}
// ----------------------------------------------------------------------
// String, vString
template <>
std::string ParameterSet::getUntrackedParameter<std::string>(char const* name,
std::string const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getString();
}
template <>
std::string ParameterSet::getUntrackedParameter<std::string>(char const* name) const {
return getEntryPointerOrThrow_(name)->getString();
}
template <>
std::vector<std::string> ParameterSet::getUntrackedParameter<std::vector<std::string> >(
char const* name, std::vector<std::string> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVString();
}
template <>
std::vector<std::string> ParameterSet::getUntrackedParameter<std::vector<std::string> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVString();
}
// ----------------------------------------------------------------------
// FileInPath
template <>
FileInPath ParameterSet::getUntrackedParameter<FileInPath>(char const* name, FileInPath const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getFileInPath();
}
template <>
FileInPath ParameterSet::getUntrackedParameter<FileInPath>(char const* name) const {
return getEntryPointerOrThrow_(name)->getFileInPath();
}
// ----------------------------------------------------------------------
// InputTag, VInputTag
template <>
InputTag ParameterSet::getUntrackedParameter<InputTag>(char const* name, InputTag const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getInputTag();
}
template <>
InputTag ParameterSet::getUntrackedParameter<InputTag>(char const* name) const {
return getEntryPointerOrThrow_(name)->getInputTag();
}
template <>
std::vector<InputTag> ParameterSet::getUntrackedParameter<std::vector<InputTag> >(
char const* name, std::vector<InputTag> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVInputTag();
}
template <>
std::vector<InputTag> ParameterSet::getUntrackedParameter<std::vector<InputTag> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVInputTag();
}
// ----------------------------------------------------------------------
// ESInputTag, VESInputTag
template <>
ESInputTag ParameterSet::getUntrackedParameter<ESInputTag>(char const* name, ESInputTag const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getESInputTag();
}
template <>
ESInputTag ParameterSet::getUntrackedParameter<ESInputTag>(char const* name) const {
return getEntryPointerOrThrow_(name)->getESInputTag();
}
template <>
std::vector<ESInputTag> ParameterSet::getUntrackedParameter<std::vector<ESInputTag> >(
char const* name, std::vector<ESInputTag> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVESInputTag();
}
template <>
std::vector<ESInputTag> ParameterSet::getUntrackedParameter<std::vector<ESInputTag> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVESInputTag();
}
// ----------------------------------------------------------------------
// EventID, VEventID
template <>
EventID ParameterSet::getUntrackedParameter<EventID>(char const* name, EventID const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getEventID();
}
template <>
EventID ParameterSet::getUntrackedParameter<EventID>(char const* name) const {
return getEntryPointerOrThrow_(name)->getEventID();
}
template <>
std::vector<EventID> ParameterSet::getUntrackedParameter<std::vector<EventID> >(
char const* name, std::vector<EventID> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVEventID();
}
template <>
std::vector<EventID> ParameterSet::getUntrackedParameter<std::vector<EventID> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVEventID();
}
// ----------------------------------------------------------------------
// LuminosityBlockID, VLuminosityBlockID
template <>
LuminosityBlockID ParameterSet::getUntrackedParameter<LuminosityBlockID>(
char const* name, LuminosityBlockID const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getLuminosityBlockID();
}
template <>
LuminosityBlockID ParameterSet::getUntrackedParameter<LuminosityBlockID>(char const* name) const {
return getEntryPointerOrThrow_(name)->getLuminosityBlockID();
}
template <>
std::vector<LuminosityBlockID> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockID> >(
char const* name, std::vector<LuminosityBlockID> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVLuminosityBlockID();
}
template <>
std::vector<LuminosityBlockID> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockID> >(
char const* name) const {
return getEntryPointerOrThrow_(name)->getVLuminosityBlockID();
}
// ----------------------------------------------------------------------
// EventRange, VEventRange
template <>
EventRange ParameterSet::getUntrackedParameter<EventRange>(char const* name, EventRange const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getEventRange();
}
template <>
EventRange ParameterSet::getUntrackedParameter<EventRange>(char const* name) const {
return getEntryPointerOrThrow_(name)->getEventRange();
}
template <>
std::vector<EventRange> ParameterSet::getUntrackedParameter<std::vector<EventRange> >(
char const* name, std::vector<EventRange> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVEventRange();
}
template <>
std::vector<EventRange> ParameterSet::getUntrackedParameter<std::vector<EventRange> >(char const* name) const {
return getEntryPointerOrThrow_(name)->getVEventRange();
}
// ----------------------------------------------------------------------
// LuminosityBlockRange, VLuminosityBlockRange
template <>
LuminosityBlockRange ParameterSet::getUntrackedParameter<LuminosityBlockRange>(
char const* name, LuminosityBlockRange const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getLuminosityBlockRange();
}
template <>
LuminosityBlockRange ParameterSet::getUntrackedParameter<LuminosityBlockRange>(char const* name) const {
return getEntryPointerOrThrow_(name)->getLuminosityBlockRange();
}
template <>
std::vector<LuminosityBlockRange> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockRange> >(
char const* name, std::vector<LuminosityBlockRange> const& defaultValue) const {
Entry const* entryPtr = retrieveUntracked(name);
return entryPtr == nullptr ? defaultValue : entryPtr->getVLuminosityBlockRange();
}
template <>
std::vector<LuminosityBlockRange> ParameterSet::getUntrackedParameter<std::vector<LuminosityBlockRange> >(
char const* name) const {
return getEntryPointerOrThrow_(name)->getVLuminosityBlockRange();
}
// ----------------------------------------------------------------------
// PSet, vPSet
template <>
ParameterSet ParameterSet::getUntrackedParameter<ParameterSet>(char const* name,
ParameterSet const& defaultValue) const {
return getUntrackedParameterSet(name, defaultValue);
}
template <>
VParameterSet ParameterSet::getUntrackedParameter<VParameterSet>(char const* name,
VParameterSet const& defaultValue) const {
return getUntrackedParameterSetVector(name, defaultValue);
}
template <>
ParameterSet ParameterSet::getUntrackedParameter<ParameterSet>(std::string const& name,
ParameterSet const& defaultValue) const {
return getUntrackedParameterSet(name, defaultValue);
}
template <>
VParameterSet ParameterSet::getUntrackedParameter<VParameterSet>(std::string const& name,
VParameterSet const& defaultValue) const {
return getUntrackedParameterSetVector(name, defaultValue);
}
template <>
ParameterSet ParameterSet::getUntrackedParameter<ParameterSet>(char const* name) const {
return getUntrackedParameterSet(name);
}
template <>
VParameterSet ParameterSet::getUntrackedParameter<VParameterSet>(char const* name) const {
return getUntrackedParameterSetVector(name);
}
template <>
ParameterSet ParameterSet::getUntrackedParameter<ParameterSet>(std::string const& name) const {
return getUntrackedParameterSet(name);
}
template <>
VParameterSet ParameterSet::getUntrackedParameter<VParameterSet>(std::string const& name) const {
return getUntrackedParameterSetVector(name);
}
//----------------------------------------------------------------------------------
// specializations for addParameter and addUntrackedParameter
template <>
void ParameterSet::addParameter<ParameterSet>(std::string const& name, ParameterSet const& value) {
invalidateRegistration(name);
insertParameterSet(true, name, ParameterSetEntry(value, true));
}
template <>
void ParameterSet::addParameter<VParameterSet>(std::string const& name, VParameterSet const& value) {
invalidateRegistration(name);
insertVParameterSet(true, name, VParameterSetEntry(value, true));
}
template <>
void ParameterSet::addParameter<ParameterSet>(char const* name, ParameterSet const& value) {
invalidateRegistration(name);
insertParameterSet(true, name, ParameterSetEntry(value, true));
}
template <>
void ParameterSet::addParameter<VParameterSet>(char const* name, VParameterSet const& value) {
invalidateRegistration(name);
insertVParameterSet(true, name, VParameterSetEntry(value, true));
}
template <>
void ParameterSet::addUntrackedParameter<ParameterSet>(std::string const& name, ParameterSet const& value) {
insertParameterSet(true, name, ParameterSetEntry(value, false));
}
template <>
void ParameterSet::addUntrackedParameter<VParameterSet>(std::string const& name, VParameterSet const& value) {
insertVParameterSet(true, name, VParameterSetEntry(value, false));
}
template <>
void ParameterSet::addUntrackedParameter<ParameterSet>(char const* name, ParameterSet const& value) {
insertParameterSet(true, name, ParameterSetEntry(value, false));
}
template <>
void ParameterSet::addUntrackedParameter<VParameterSet>(char const* name, VParameterSet const& value) {
insertVParameterSet(true, name, VParameterSetEntry(value, false));
}
//----------------------------------------------------------------------------------
// specializations for getParameterNamesForType
template <>
std::vector<std::string> ParameterSet::getParameterNamesForType<ParameterSet>(bool trackiness) const {
std::vector<std::string> output;
getParameterSetNames(output, trackiness);
return output;
}
template <>
std::vector<std::string> ParameterSet::getParameterNamesForType<VParameterSet>(bool trackiness) const {
std::vector<std::string> output;
getParameterSetVectorNames(output, trackiness);
return output;
}
ParameterSet const& ParameterSet::getParameterSet(std::string const& name) const {
return retrieveParameterSet(name).pset();
}
ParameterSet const& ParameterSet::getParameterSet(char const* name) const {
return retrieveParameterSet(name).pset();
}
ParameterSet ParameterSet::getUntrackedParameterSet(std::string const& name, ParameterSet const& defaultValue) const {
return getUntrackedParameterSet(name.c_str(), defaultValue);
}
ParameterSet ParameterSet::getUntrackedParameterSet(char const* name, ParameterSet const& defaultValue) const {
ParameterSetEntry const* entryPtr = retrieveUntrackedParameterSet(name);
if (entryPtr == nullptr) {
return defaultValue;
}
return entryPtr->pset();
}
ParameterSet const& ParameterSet::getUntrackedParameterSet(std::string const& name) const {
return getUntrackedParameterSet(name.c_str());
}
ParameterSet const& ParameterSet::getUntrackedParameterSet(char const* name) const {
ParameterSetEntry const* result = retrieveUntrackedParameterSet(name);
if (result == nullptr)
throw Exception(errors::Configuration, "MissingParameter:")
<< "The required ParameterSet '" << name << "' was not specified.\n";
return result->pset();
}
VParameterSet const& ParameterSet::getParameterSetVector(std::string const& name) const {
return retrieveVParameterSet(name).vpset();
}
VParameterSet const& ParameterSet::getParameterSetVector(char const* name) const {
return retrieveVParameterSet(name).vpset();
}
VParameterSet ParameterSet::getUntrackedParameterSetVector(std::string const& name,
VParameterSet const& defaultValue) const {
return getUntrackedParameterSetVector(name.c_str(), defaultValue);
}
VParameterSet ParameterSet::getUntrackedParameterSetVector(char const* name,
VParameterSet const& defaultValue) const {
VParameterSetEntry const* entryPtr = retrieveUntrackedVParameterSet(name);
return entryPtr == nullptr ? defaultValue : entryPtr->vpset();
}
VParameterSet const& ParameterSet::getUntrackedParameterSetVector(std::string const& name) const {
return getUntrackedParameterSetVector(name.c_str());
}
VParameterSet const& ParameterSet::getUntrackedParameterSetVector(char const* name) const {
VParameterSetEntry const* result = retrieveUntrackedVParameterSet(name);
if (result == nullptr)
throw Exception(errors::Configuration, "MissingParameter:")
<< "The required ParameterSetVector '" << name << "' was not specified.\n";
return result->vpset();
}
} // namespace edm
|