Changeset 80306e6 in git
- Timestamp:
- May 2, 2016, 5:28:28 PM (9 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- 5f4c13a
- Parents:
- d1e6379
- Location:
- classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
rd1e6379 r80306e6 127 127 Momentum(0.0, 0.0, 0.0, 0.0), 128 128 Position(0.0, 0.0, 0.0, 0.0), 129 InitialPosition(0.0, 0.0, 0.0, 0.0), 129 130 Area(0.0, 0.0, 0.0, 0.0), 130 Dxy(0), SDxy(0), Xd(0), Yd(0), Zd(0), 131 L(0), 132 D0(0), ErrorD0(0), 133 DZ(0), ErrorDZ(0), 134 P(0), ErrorP(0), 135 PT(0), ErrorPT(0), 136 CtgTheta(0), ErrorCtgTheta(0), 137 Phi(0), ErrorPhi(0), 138 Xd(0), Yd(0), Zd(0), 131 139 TrackResolution(0), 132 140 NCharged(0), … … 262 270 object.Momentum = Momentum; 263 271 object.Position = Position; 272 object.InitialPosition = Position; 264 273 object.Area = Area; 265 object.Dxy = Dxy; 266 object.SDxy = SDxy; 274 object.L = L; 275 object.D0 = D0; 276 object.ErrorD0 = ErrorD0; 277 object.DZ = DZ; 278 object.ErrorDZ = ErrorDZ; 279 object.P = P; 280 object.ErrorP = ErrorP; 281 object.PT = PT; 282 object.ErrorPT = ErrorPT; 283 object.CtgTheta = CtgTheta ; 284 object.ErrorCtgTheta = ErrorCtgTheta; 285 object.Phi = Phi; 286 object.ErrorPhi = ErrorPhi; 267 287 object.Xd = Xd; 268 288 object.Yd = Yd; … … 363 383 Momentum.SetXYZT(0.0, 0.0, 0.0, 0.0); 364 384 Position.SetXYZT(0.0, 0.0, 0.0, 0.0); 385 InitialPosition.SetXYZT(0.0, 0.0, 0.0, 0.0); 365 386 Area.SetXYZT(0.0, 0.0, 0.0, 0.0); 366 Dxy = 0.0; 367 SDxy = 0.0; 387 L = 0.0; 388 D0 = 0.0; 389 ErrorD0 = 0.0; 390 DZ = 0.0; 391 ErrorDZ = 0.0; 392 P =0.0; 393 ErrorP =0.0; 394 PT = 0.0; 395 ErrorPT = 0.0; 396 CtgTheta = 0.0; 397 ErrorCtgTheta = 0.0; 398 Phi = 0.0; 399 ErrorPhi = 0.0; 368 400 Xd = 0.0; 369 401 Yd = 0.0; -
classes/DelphesClasses.h
rd1e6379 r80306e6 415 415 Float_t TOuter; // track position (z component) at the tracker edge 416 416 417 Float_t D xy; // track signed transverse impact parameter418 Float_t SDxy; // signed error on the track signed transverse impact parameter417 Float_t D0; // track signed transverse impact parameter 418 Float_t ErrorD0; // signed error on the track signed transverse impact parameter 419 419 Float_t Xd; // X coordinate of point of closest approach to vertex 420 420 Float_t Yd; // Y coordinate of point of closest approach to vertex … … 526 526 Float_t DeltaPhi; 527 527 528 TLorentzVector Momentum, Position, Area; 529 530 Float_t Dxy; 531 Float_t SDxy; 528 TLorentzVector Momentum, Position, InitialPosition, Area; 529 530 Float_t L; // path length 531 Float_t D0; 532 Float_t ErrorD0; 533 Float_t DZ; 534 Float_t ErrorDZ; 535 Float_t P; 536 Float_t ErrorP; 537 Float_t PT; 538 Float_t ErrorPT; 539 Float_t CtgTheta; 540 Float_t ErrorCtgTheta; 541 Float_t Phi; 542 Float_t ErrorPhi; 543 532 544 Float_t Xd; 533 545 Float_t Yd;
Note:
See TracChangeset
for help on using the changeset viewer.