Skip to content

Commit 68cb393

Browse files
committed
fix compile error
``` ```
1 parent 64cebf5 commit 68cb393

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

StRoot/StFwdUtils/StFwdAnalysisMaker.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "StFwdTrackMaker/Common.h"
33

44
#include "TMath.h"
5+
#include "TVector3.h"
56

67
#include <limits>
78
#include <map>
@@ -39,6 +40,7 @@
3940
#include "StMuDSTMaker/COMMON/StMuDstMaker.h"
4041
#include "StMuDSTMaker/COMMON/StMuDst.h"
4142
#include "StMuDSTMaker/COMMON/StMuFwdTrack.h"
43+
#include "StMuDSTMaker/COMMON/StMuFwdTrackCollection.h"
4244

4345

4446
#include "tables/St_g2t_fts_hit_Table.h"
Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
#ifndef ST_FWD_ANALYSIS_MAKER_H
22
#define ST_FWD_ANALYSIS_MAKER_H
33

4-
#include "StChain/StMaker.h"
5-
#include "TVector3.h"
6-
// ROOT includes
7-
#include "TNtuple.h"
8-
#include "TTree.h"
9-
// STL includes
10-
#include <vector>
11-
#include <memory>
124
#include <map>
135

14-
class StFwdTrack;
15-
16-
17-
class StFwdAnalysisMaker : public StMaker {
6+
#include "StChain/StMaker.h"
187

19-
ClassDef(StFwdAnalysisMaker, 0);
208

9+
class StFwdAnalysisMaker : public StMaker
10+
{
2111
public:
2212
StFwdAnalysisMaker();
2313
~StFwdAnalysisMaker(){/* nada */};
@@ -29,10 +19,11 @@ class StFwdAnalysisMaker : public StMaker {
2919
void ProcessFwdTracks();
3020
void ProcessFwdMuTracks();
3121

32-
private:
3322
protected:
3423

35-
std::map<TString, TH1*> mHists;
24+
std::map<TString, TH1*> mHists;
25+
26+
ClassDef(StFwdAnalysisMaker, 0);
3627
};
3728

3829
#endif

0 commit comments

Comments
 (0)