Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
```
```
  • Loading branch information
plexoos committed Jul 28, 2023
1 parent 64cebf5 commit 68cb393
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 15 deletions.
2 changes: 2 additions & 0 deletions StRoot/StFwdUtils/StFwdAnalysisMaker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "StFwdTrackMaker/Common.h"

#include "TMath.h"
#include "TVector3.h"

#include <limits>
#include <map>
Expand Down Expand Up @@ -39,6 +40,7 @@
#include "StMuDSTMaker/COMMON/StMuDstMaker.h"
#include "StMuDSTMaker/COMMON/StMuDst.h"
#include "StMuDSTMaker/COMMON/StMuFwdTrack.h"
#include "StMuDSTMaker/COMMON/StMuFwdTrackCollection.h"


#include "tables/St_g2t_fts_hit_Table.h"
Expand Down
21 changes: 6 additions & 15 deletions StRoot/StFwdUtils/StFwdAnalysisMaker.h
Original file line number Diff line number Diff line change
@@ -1,23 +1,13 @@
#ifndef ST_FWD_ANALYSIS_MAKER_H
#define ST_FWD_ANALYSIS_MAKER_H

#include "StChain/StMaker.h"
#include "TVector3.h"
// ROOT includes
#include "TNtuple.h"
#include "TTree.h"
// STL includes
#include <vector>
#include <memory>
#include <map>

class StFwdTrack;


class StFwdAnalysisMaker : public StMaker {
#include "StChain/StMaker.h"

ClassDef(StFwdAnalysisMaker, 0);

class StFwdAnalysisMaker : public StMaker
{
public:
StFwdAnalysisMaker();
~StFwdAnalysisMaker(){/* nada */};
Expand All @@ -29,10 +19,11 @@ class StFwdAnalysisMaker : public StMaker {
void ProcessFwdTracks();
void ProcessFwdMuTracks();

private:
protected:

std::map<TString, TH1*> mHists;
std::map<TString, TH1*> mHists;

ClassDef(StFwdAnalysisMaker, 0);
};

#endif

0 comments on commit 68cb393

Please sign in to comment.