Changeset 363e269 in git
- Timestamp:
- Mar 4, 2021, 6:00:38 PM (4 years ago)
- Branches:
- master
- Children:
- 1e48d63, 2eaa9fd, 91ef0b8
- Parents:
- 127644a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
r127644a r363e269 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.