Skip to content

Commit

Permalink
fixing clang issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tbreitne committed May 30, 2014
1 parent 8496910 commit e9c3313
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HLT/TPCLib/calibration/AliHLTTPCCalibSeedMakerComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include "AliHLTProcessor.h"

//forward declarations
class AliHLTTPCSpacePointData;
struct AliHLTTPCSpacePointData;
class AliTPCParam;
//class TClonesArray;
class TObjArray;
Expand Down
2 changes: 1 addition & 1 deletion HLT/TPCLib/tracking-ca/AliHLTTPCCATracker.h
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ MEM_CLASS_PRE() class AliHLTTPCCATracker
GPUd() static int CalculateHitWeight( int NHits, float chi2, int ) {
const float chi2_suppress = 6.f;
float weight = (((float) NHits * (chi2_suppress - chi2 / 500.f)) * (1e9 / chi2_suppress / 160.));
if (weight < 0 || weight > 2e9) weight = 0;
if (weight < 0. || weight > 2e9) return 0;
return ( (int) weight );
//return( (NHits << 16) + num);
}
Expand Down
2 changes: 1 addition & 1 deletion HLT/TPCLib/tracking-ca/AliHLTTPCCATrackerComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class AliHLTTPCCATrackerFramework;
class AliHLTTPCCASliceOutput;
class AliHLTTPCCAClusterData;
class AliHLTTPCSpacePointData;
struct AliHLTTPCSpacePointData;

/**
* @class AliHLTTPCCATrackerComponent
Expand Down
2 changes: 1 addition & 1 deletion HLT/global/AliHLTGlobalTrackResidualsComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

#include "AliHLTProcessor.h"

class AliHLTTPCSpacePointData;
struct AliHLTTPCSpacePointData;
class AliHLTGlobalBarrelTrack;

class AliHLTGlobalTrackResidualsComponent : public AliHLTProcessor {
Expand Down

0 comments on commit e9c3313

Please sign in to comment.