Skip to content

Commit

Permalink
gcc7 compilation warning(s) fix(es) in TopQuarkAnalysis/TopKinFitter
Browse files Browse the repository at this point in the history
  • Loading branch information
mrodozov committed Jul 25, 2017
1 parent 3b3a9c0 commit e2dfcad
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -218,7 +218,7 @@ void TtFullLepKinSolutionProducer::produce(edm::Event & evt, const edm::EventSet
// Check if the leptons for the required Channel are available
bool correctLeptons = ((electronsFound && eeChannel_) || (muonsFound && mumuChannel_) || (electronMuonFound && emuChannel_) );
// Check for equally charged leptons if for wrong charge combinations is searched
if(isWrongCharge) correctLeptons *= searchWrongCharge_;
if(isWrongCharge) { correctLeptons = correctLeptons && searchWrongCharge_; }

if(correctLeptons && METFound && jetsFound) {

Expand Down

0 comments on commit e2dfcad

Please sign in to comment.