- Timestamp:
- Dec 2, 2019, 6:55:22 PM (5 years ago)
- Branches:
- Timing
- Children:
- 2ad823e, 6fc566b
- Parents:
- c614dd7
- Location:
- classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.cc
rc614dd7 r84a097e 147 147 CtgTheta(0), ErrorCtgTheta(0), 148 148 Phi(0), ErrorPhi(0), 149 Xd(0), Yd(0), Zd(0), 149 Xd(0), Yd(0), Zd(0), Td(0), 150 VertexingWeight(0), 150 151 TrackResolution(0), 151 152 NCharged(0), … … 318 319 object.Phi = Phi; 319 320 object.ErrorPhi = ErrorPhi; 321 object.Td = Td; 320 322 object.Xd = Xd; 321 323 object.Yd = Yd; 322 324 object.Zd = Zd; 325 object.VertexingWeight = Zd; 323 326 object.TrackResolution = TrackResolution; 324 327 object.NCharged = NCharged; … … 447 450 Phi = 0.0; 448 451 ErrorPhi = 0.0; 452 Td = 0.0; 449 453 Xd = 0.0; 450 454 Yd = 0.0; 451 455 Zd = 0.0; 456 VertexingWeight = 0.0; 452 457 TrackResolution = 0.0; 453 458 NCharged = 0; -
classes/DelphesClasses.h
rc614dd7 r84a097e 456 456 Float_t ZOuter; // track position (z component) at the tracker edge 457 457 458 Float_t Td; // T coordinate of point of closest approach to vertex 458 459 Float_t Xd; // X coordinate of point of closest approach to vertex 459 460 Float_t Yd; // Y coordinate of point of closest approach to vertex 460 461 Float_t Zd; // Z coordinate of point of closest approach to vertex 462 463 Float_t TOFreco; // reconstructed time of flight 464 Float_t TOFgen; // gen time of flight 461 465 462 466 Float_t L; // track path length … … 482 486 TLorentzVector P4() const; 483 487 484 ClassDef(Track, 3)488 ClassDef(Track, 4) 485 489 }; 486 490 … … 544 548 Float_t ZOuter; // track position (z component) at the tracker edge 545 549 550 Float_t Td; // X coordinate of point of closest approach to vertex 546 551 Float_t Xd; // X coordinate of point of closest approach to vertex 547 552 Float_t Yd; // Y coordinate of point of closest approach to vertex … … 664 669 Float_t ErrorPhi; 665 670 671 Float_t Td; 666 672 Float_t Xd; 667 673 Float_t Yd; 668 674 Float_t Zd; 669 675 676 // Vertexing variables 677 Float_t VertexingWeight; 678 670 679 // tracking resolution 671 672 680 Float_t TrackResolution; 673 681
Note:
See TracChangeset
for help on using the changeset viewer.