Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:13:21

0001 /// ---------------------------------------------------------------------------
0002 /*! \file   TrkInterfaces.h
0003  *  \author Derek Anderson
0004  *  \date   03.05.2024
0005  *
0006  *  Track-related interfaces.
0007  */
0008 /// ---------------------------------------------------------------------------
0009 
0010 
0011 #ifndef SCORRELATORUTILITIES_TRKINTERFACES_H
0012 #define SCORRELATORUTILITIES_TRKINTERFACES_H
0013 
0014 // c++ utilities
0015 #include <string>
0016 #include <vector>
0017 #include <utility>
0018 #include <cassert>
0019 // root libraries
0020 #include <TF1.h>
0021 // phool libraries
0022 #include <phool/phool.h>
0023 #include <phool/getClass.h>
0024 #include <phool/PHIODataNode.h>
0025 #include <phool/PHNodeIterator.h>
0026 #include <phool/PHCompositeNode.h>
0027 // tracking libraries
0028 #include <trackbase_historic/SvtxTrack.h>
0029 #include <trackbase_historic/SvtxTrackMap.h>
0030 // analysis utilities
0031 #include "Constants.h"
0032 
0033 // make common namespaces implicit
0034 using namespace std;
0035 
0036 
0037 
0038 namespace SColdQcdCorrelatorAnalysis {
0039   namespace Interfaces {
0040 
0041     // track interfaces -------------------------------------------------------
0042 
0043     TF1*          GetSigmaDcaTF1(const string name, const vector<float> params, const pair<float, float> range);
0044     SvtxTrackMap* GetTrackMap(PHCompositeNode* topNode);
0045 
0046   }  // end Interfaces namespace
0047 }  // end SColdQcdCorrealtorAnalysis namespace
0048 
0049 #endif
0050 
0051 // end ------------------------------------------------------------------------