Changeset 91ef0b8 in git for classes/DelphesClasses.cc
- Timestamp:
- Mar 7, 2021, 9:48:26 AM (4 years ago)
- Branches:
- master
- Children:
- bd33fce
- Parents:
- 0d65492 (diff), 363e269 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r0d65492 r91ef0b8 112 112 TMatrixDSym Cv; 113 113 Cv.ResizeTo(5, 5); 114 114 115 115 // convert diagonal term to original units 116 Cv(0, 0)=TMath::Power(ErrorD0 *1.0E-3, 2.);116 Cv(0, 0)=TMath::Power(ErrorD0, 2.); 117 117 Cv(1, 1)=TMath::Power(ErrorPhi, 2.); 118 Cv(2, 2)=TMath::Power(ErrorC *1.0E3, 2.);119 Cv(3, 3)=TMath::Power(ErrorDZ *1.0E-3, 2.);118 Cv(2, 2)=TMath::Power(ErrorC, 2.); 119 Cv(3, 3)=TMath::Power(ErrorDZ, 2.); 120 120 Cv(4, 4)=TMath::Power(ErrorCtgTheta, 2.); 121 121 … … 171 171 TMatrixDSym Cv; 172 172 Cv.ResizeTo(5, 5); 173 173 174 174 // convert diagonal term to original units 175 Cv(0, 0)=TMath::Power(ErrorD0 *1.0E-3, 2.);175 Cv(0, 0)=TMath::Power(ErrorD0, 2.); 176 176 Cv(1, 1)=TMath::Power(ErrorPhi, 2.); 177 Cv(2, 2)=TMath::Power(ErrorC *1.0E3, 2.);178 Cv(3, 3)=TMath::Power(ErrorDZ *1.0E-3, 2.);177 Cv(2, 2)=TMath::Power(ErrorC, 2.); 178 Cv(3, 3)=TMath::Power(ErrorDZ, 2.); 179 179 Cv(4, 4)=TMath::Power(ErrorCtgTheta, 2.); 180 180 … … 234 234 NNeutrals(0), 235 235 NeutralEnergyFraction(0), // charged energy fraction 236 ChargedEnergyFraction(0), // neutral energy fraction 236 ChargedEnergyFraction(0), // neutral energy fraction 237 237 Beta(0), 238 238 BetaStar(0),
Note:
See TracChangeset
for help on using the changeset viewer.