Skip to content
Snippets Groups Projects
Commit 1d7f39d1 authored by Jure Bericic's avatar Jure Bericic
Browse files

Warning fixes (signed unsigned comparison).

parent e7ebcd0a
No related branches found
No related tags found
No related merge requests found
...@@ -37,10 +37,10 @@ class THcTrigRawHit : public THcRawHit { ...@@ -37,10 +37,10 @@ class THcTrigRawHit : public THcRawHit {
protected: protected:
static const Int_t fMaxNPulsesAdc = 4; static const UInt_t fMaxNPulsesAdc = 4;
static const Int_t fMaxNSamplesAdc = 160; static const UInt_t fMaxNSamplesAdc = 160;
static const Int_t fMaxNHitsTdc = 16; static const UInt_t fMaxNHitsTdc = 16;
static const Int_t fNPlanes = 2; static const UInt_t fNPlanes = 2;
Int_t fAdc[fMaxNPulsesAdc]; Int_t fAdc[fMaxNPulsesAdc];
Int_t fAdcTime[fMaxNPulsesAdc]; Int_t fAdcTime[fMaxNPulsesAdc];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment