|
262 | 262 | VarParsing.multiplicity.singleton,
|
263 | 263 | VarParsing.varType.bool,
|
264 | 264 | 'True if you want to run Jet Variables')
|
| 265 | +options.register('runTagVariables', True, |
| 266 | + VarParsing.multiplicity.singleton, |
| 267 | + VarParsing.varType.bool, |
| 268 | + 'True if you want to run Tag Variables') |
265 | 269 | options.register('runQuarkVariables', False,
|
266 | 270 | VarParsing.multiplicity.singleton,
|
267 | 271 | VarParsing.varType.bool,
|
|
278 | 282 | VarParsing.multiplicity.singleton,
|
279 | 283 | VarParsing.varType.bool,
|
280 | 284 | 'True if you want to run CSV TaggingVariables')
|
| 285 | +options.register('runCSVTagVariablesSubJets', False, |
| 286 | + VarParsing.multiplicity.singleton, |
| 287 | + VarParsing.varType.bool, |
| 288 | + 'True if you want to run CSV TaggingVariables for SubJets') |
| 289 | +options.register('runTagVariablesSubJets', False, |
| 290 | + VarParsing.multiplicity.singleton, |
| 291 | + VarParsing.varType.bool, |
| 292 | + 'True if you want to run TagVariables for SubJets') |
281 | 293 | options.register('runCSVTagTrackVariables', False,
|
282 | 294 | VarParsing.multiplicity.singleton,
|
283 | 295 | VarParsing.varType.bool,
|
|
1504 | 1516 | process.btagana.produceAllTrackTree = options.produceAllTrackTree ## True if you want to run info for all tracks : for commissioning studies
|
1505 | 1517 | process.btagana.producePtRelTemplate = options.producePtRelTemplate ## True for performance studies
|
1506 | 1518 | #------------------
|
1507 |
| -process.btagana.runTagVariables = False ## True if you want to run TagInfo TaggingVariables |
| 1519 | +process.btagana.runTagVariables = options.runTagVariables ## True if you want to run TagInfo TaggingVariables |
1508 | 1520 | process.btagana.runCSVTagVariables = options.runCSVTagVariables ## True if you want to run CSV TaggingVariables
|
1509 | 1521 | process.btagana.runCSVTagTrackVariables = options.runCSVTagTrackVariables ## True if you want to run CSV Tagging Track Variables
|
1510 | 1522 | process.btagana.runDeepFlavourTagVariables = options.runDeepFlavourTagVariables
|
|
1547 | 1559 | process.btaganaFatJets = process.btagana.clone(
|
1548 | 1560 | runEventInfo = cms.bool(not options.processStdAK4Jets),
|
1549 | 1561 | allowJetSkipping = cms.bool(False),
|
1550 |
| - runTagVariables = cms.bool(False), |
1551 |
| - runDeepFlavourTagVariables = cms.bool(False), |
| 1562 | + runTagVariables = options.runTagVariables, |
| 1563 | + runDeepFlavourTagVariables = options.runDeepFlavourTagVariables, |
1552 | 1564 | deepFlavourJetTags = cms.string(''),
|
1553 | 1565 | deepFlavourNegJetTags = cms.string(''),
|
1554 |
| - runTagVariablesSubJets = cms.bool(False), |
| 1566 | + runTagVariablesSubJets = options.runTagVariablesSubJets, |
1555 | 1567 | useSelectedTracks = cms.bool(True),
|
1556 | 1568 | maxDeltaR = cms.double(options.fatJetRadius),
|
1557 | 1569 | R0 = cms.double(options.fatJetRadius),
|
|
0 commit comments