Skip to content

Commit

Permalink
Merge pull request #188 from kschweiger/nanoHLTBackfillFix
Browse files Browse the repository at this point in the history
Changing trigger backfill value
  • Loading branch information
gpetruc committed Aug 7, 2018
2 parents db9d5e4 + f849128 commit 7d228b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/NanoAOD/plugins/TriggerOutputBranches.cc
Expand Up @@ -38,7 +38,7 @@ TriggerOutputBranches::updateTriggerNames(TTree & tree, const edm::TriggerNames
for(auto & existing : m_triggerBranches) {if(name==existing.name) found=true;}
if(!found){
NamedBranchPtr nb(name,"Trigger/flag bit"); //FIXME: If the title can be updated we can use it to list the versions _v* that were seen in this file
uint8_t backFillValue=-1;
uint8_t backFillValue=0;
nb.branch= tree.Branch(nb.name.c_str(), &backFillValue, (name + "/O").c_str());
nb.branch->SetTitle(nb.title.c_str());
nb.idx=j;
Expand Down

0 comments on commit 7d228b6

Please sign in to comment.