xAOD DecayVertex Code | ||||||||
Changed: | ||||||||
< < | The DecayVertex code is the rewritten version of V0Tools so that it is compatible with the xAOD. The DecayVertex code is a more object orientated approach to the V0Tools. This was done as almost all of the V0Tools functions had a vertex as an input, whereas now the DecayVertex class inherits from the xAOD vertex class and is constructed using a copy constructor so the DecayVertex functions do not need a vertex as an input except for those calculating distance between vertices. | |||||||
> > | The DecayVertex code is the rewritten version of V0Tools so that it is compatible with the xAOD. The DecayVertex code is a more object orientated approach to the V0Tools. This was done as almost all of the V0Tools functions had a vertex as an input, whereas now the DecayVertex class inherits from the xAOD vertex class and is constructed using a copy constructor so the DecayVertex functions do not need a vertex as an input except for those calculating distance between vertices | |||||||
Added: | ||||||||
> > | Functions that work | |||||||
Added: | ||||||||
> > | Currently all functions that do not rely on TrackParticle parameters work and have been tested.
The functions that do rely on TrackParticle parameters, such as the errors on parameters, will work if the JpsiCandidates have tracks added to the vertex and stored as PrimaryVertices are. If not functions such as the DecayVertex::getRefPx(size_t Index) would be required. This is needed for the phi, theta and qOverP functions. How to use Dec | |||||||
Locations of useful filesThe current V0Tools is located in /Tracking/TrkVertexFitter/TrkVertexAnalysisUtils/trunk The header files VxVertex.h, ExtendedVxCandidate.h and VxCandidate.h are located in /Tracking/TrkEvent/VxVertex/trunk/VxVertex The xAOD files are located in /Event/xAOD Most of the files that will be used will be located in /Event/xAOD/xAODTracking Some other xAOD files that are used are /Event/xAOD/xAODBase/trunk/xAODBase/IParticle which links to the TLorentzVector class to allow for the same operations on 4-vectors as used in ROOT | ||||||||
Deleted: | ||||||||
< < | Functions that workCurrently all functions that do not rely on TrackParticle parameters work and have been tested.The functions that do rely on TrackParticle parameters, such as the errors on parameters, will work if the JpsiCandidates have tracks added to the vertex and stored as PrimaryVertices are. If not functions such as the DecayVertex::GetPx(size_t Index) would be required: GetParameter(size_t trkIndex){ float Parameter = 0; if(trackParticle(trkIndex)!= 0){ Parameter = trackParticle(trkIndex)->Parameter(); }else{ SG::AuxElement::Accessor<std::vector<float>> refTrackParameterAcc("RefTrackParameter"); Parameter = refTrackParameterAcc(*this)[trkIndex]; } return Parameter; } | |||||||
|