Skip to content

Commit

Permalink
fix mt variable
Browse files Browse the repository at this point in the history
  • Loading branch information
amarini committed Jul 8, 2015
1 parent 29fdce3 commit b4db853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Event.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ float Event::Mt() {
float phi_t = LeadTau() -> Phi();
float pt_m = met_ . Pt();
float phi_m= met_. Phi();
return TMath::Sqrt( 2* pt_t * pt_m * TMath::Cos(ChargedHiggs::deltaPhi(phi_t,phi_m) ) );
return TMath::Sqrt( 2* pt_t * pt_m * ( 1.-TMath::Cos(ChargedHiggs::deltaPhi(phi_t,phi_m)) ) );
}

double Event::weight(){
Expand Down

0 comments on commit b4db853

Please sign in to comment.