Changes in classes/DelphesClasses.h [332025f:a98c7ef] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.h
r332025f ra98c7ef 147 147 Float_t Pz; // particle momentum vector (z component) | hepevt.phep[number][2] 148 148 149 Float_t D0; 150 Float_t DZ; 151 Float_t P; 152 Float_t PT; 153 Float_t CtgTheta; 154 Float_t Phi; 149 Float_t PT; // particle transverse momentum 155 150 Float_t Eta; // particle pseudorapidity 151 Float_t Phi; // particle azimuthal angle 152 156 153 Float_t Rapidity; // particle rapidity 157 154 … … 171 168 //--------------------------------------------------------------------------- 172 169 173 class Vertex: public SortableObject170 class Vertex: public TObject 174 171 { 175 172 public: … … 179 176 Float_t Z; // vertex position (z component) 180 177 181 Double_t ErrorX; 182 Double_t ErrorY; 183 Double_t ErrorZ; 184 Double_t ErrorT; 185 186 Int_t Index; 187 Int_t NDF; 188 Double_t Sigma; 189 Double_t SumPT2; 190 Double_t BTVSumPT2; 191 Double_t GenDeltaZ; 192 Double_t GenSumPT2; 193 194 TRefArray Constituents; // references to constituents 195 196 static CompBase *fgCompare; //! 197 const CompBase *GetCompare() const { return fgCompare; } 198 199 ClassDef(Vertex, 3) 178 ClassDef(Vertex, 1) 200 179 }; 201 180 … … 418 397 Int_t Charge; // track charge 419 398 399 Float_t PT; // track transverse momentum 400 420 401 Float_t Eta; // track pseudorapidity 402 Float_t Phi; // track azimuthal angle 421 403 422 404 Float_t EtaOuter; // track pseudorapidity at the tracker edge … … 433 415 Float_t TOuter; // track position (z component) at the tracker edge 434 416 435 Float_t L; // track path length 436 Float_t ErrorT; // error on the time measurement 437 438 Float_t D0; // track signed transverse impact parameter 439 Float_t ErrorD0; // signed error on the track signed transverse impact parameter 440 441 Float_t DZ; // track transverse momentum 442 Float_t ErrorDZ; // track transverse momentum error 443 444 Float_t P; // track transverse momentum 445 Float_t ErrorP; // track transverse momentum error 446 447 Float_t PT; // track transverse momentum 448 Float_t ErrorPT; // track transverse momentum error 449 450 Float_t CtgTheta; // track transverse momentum 451 Float_t ErrorCtgTheta; // track transverse momentum error 452 453 Float_t Phi; // track azimuthal angle 454 Float_t ErrorPhi; // track azimuthal angle 455 417 Float_t Dxy; // track signed transverse impact parameter 418 Float_t SDxy; // signed error on the track signed transverse impact parameter 456 419 Float_t Xd; // X coordinate of point of closest approach to vertex 457 420 Float_t Yd; // Y coordinate of point of closest approach to vertex … … 460 423 TRef Particle; // reference to generated particle 461 424 462 Int_t VertexIndex; // reference to vertex463 464 425 static CompBase *fgCompare; //! 465 426 const CompBase *GetCompare() const { return fgCompare; } … … 565 526 Float_t DeltaPhi; 566 527 567 TLorentzVector Momentum, Position, InitialPosition, PositionError, Area; 568 569 Float_t L; // path length 570 Float_t ErrorT; // path length 571 Float_t D0; 572 Float_t ErrorD0; 573 Float_t DZ; 574 Float_t ErrorDZ; 575 Float_t P; 576 Float_t ErrorP; 577 Float_t PT; 578 Float_t ErrorPT; 579 Float_t CtgTheta; 580 Float_t ErrorCtgTheta; 581 Float_t Phi; 582 Float_t ErrorPhi; 583 528 TLorentzVector Momentum, Position, Area; 529 530 Float_t Dxy; 531 Float_t SDxy; 584 532 Float_t Xd; 585 533 Float_t Yd; … … 587 535 588 536 // tracking resolution 589 537 590 538 Float_t TrackResolution; 591 539 … … 614 562 Float_t SumPt; 615 563 616 // vertex variables617 618 Int_t ClusterIndex;619 Int_t ClusterNDF;620 Double_t ClusterSigma;621 Double_t SumPT2;622 Double_t BTVSumPT2;623 Double_t GenDeltaZ;624 Double_t GenSumPT2;625 626 564 // N-subjettiness variables 627 565 … … 657 595 void SetFactory(DelphesFactory *factory) { fFactory = factory; } 658 596 659 ClassDef(Candidate, 5)597 ClassDef(Candidate, 4) 660 598 }; 661 599
Note:
See TracChangeset
for help on using the changeset viewer.