Skip to content

Commit

Permalink
Changed backfill value
Browse files Browse the repository at this point in the history
  • Loading branch information
kschweiger committed Aug 7, 2018
1 parent db9d5e4 commit f849128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/NanoAOD/plugins/TriggerOutputBranches.cc
Original file line number Diff line number Diff line change
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 f849128

Please sign in to comment.