- Timestamp:
- 05/07/21 12:35:29 (4 years ago)
- Location:
- trunk/Mars
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/manalysis/MMatrixLoop.h
r6924 r20095 11 11 { 12 12 public: 13 #pragma GCC diagnostic push 14 #pragma GCC diagnostic ignored "-Wshadow" 13 15 enum OperationMode_t { 14 16 kDefault, … … 16 18 kOdd 17 19 }; 20 #pragma GCC diagnostic pop 21 18 22 private: 19 23 // MMatrixLoop -
trunk/Mars/mastro/MVector3.h
r14447 r20095 4 4 #ifndef ROOT_TVector3 5 5 #include <TVector3.h> 6 #endif 7 8 #ifndef ROOT_TString 9 #include <TString.h> // root 6.24 6 10 #endif 7 11 -
trunk/Mars/mbase/MLog.h
r14443 r20095 40 40 }; 41 41 42 #pragma GCC diagnostic push 43 #pragma GCC diagnostic ignored "-Wshadow" 42 44 enum ELogType { 43 45 kDefault, … … 45 47 kBlackWhite 46 48 }; 49 #pragma GCC diagnostic pop 47 50 48 51 private: -
trunk/Mars/mcalib/MCalibrateData.h
r14449 r20095 24 24 { 25 25 public: 26 #pragma GCC diagnostic push 27 #pragma GCC diagnostic ignored "-Wshadow" 26 28 enum CalibrationMode_t 27 29 { … … 35 37 kDummy = 7 36 38 }; 39 #pragma GCC diagnostic pop 37 40 38 41 enum PedestalType_t -
trunk/Mars/mextralgo/MExtralgoSpline.h
r17879 r20095 5 5 #include <TMath.h> 6 6 #endif 7 #ifndef ROOT_TObject 8 #include <TObject.h> // root 6.24 9 #endif 7 10 8 11 class MArrayF; … … 12 15 { 13 16 private: 17 #pragma GCC diagnostic push 18 #pragma GCC diagnostic ignored "-Wshadow" 14 19 enum 15 20 { … … 20 25 kFixedWidth = BIT(4), 21 26 }; 27 #pragma GCC diagnostic pop 22 28 public: 23 29 enum ExtractionType_t -
trunk/Mars/mfilter/MFMagicCuts.h
r9338 r20095 24 24 { 25 25 public: 26 #pragma GCC diagnostic push 27 #pragma GCC diagnostic ignored "-Wshadow" 26 28 // Possible kind of theta cuts 27 29 enum ThetaCut_t { … … 31 33 kWobble=kOn|kOff 32 34 }; 35 #pragma GCC diagnostic pop 36 33 37 // Possible kind of hadronness cuts 34 38 enum HadronnessCut_t { -
trunk/Mars/mhbase/MBinning.h
r14447 r20095 29 29 void StreamPrimitive(std::ostream &out) const; 30 30 31 #pragma GCC diagnostic push 32 #pragma GCC diagnostic ignored "-Wshadow" 31 33 enum { 32 34 kIsDefault, … … 36 38 kIsUserArray 37 39 }; 40 #pragma GCC diagnostic pop 38 41 39 42 public: -
trunk/Mars/mhflux/MAlphaFitter.h
r15446 r20095 17 17 { 18 18 public: 19 #pragma GCC diagnostic push 20 #pragma GCC diagnostic ignored "-Wshadow" 19 21 enum ScaleMode_t { 20 22 kNone, // No scaling … … 26 28 kUserScale // scale by fixed factor set by SetScaleUser 27 29 }; 30 #pragma GCC diagnostic pop 28 31 enum Strategy_t { 29 32 kSignificance, -
trunk/Mars/mhist/MHCamera.h
r15258 r20095 220 220 void SetLevels(const TArrayF &arr); 221 221 222 void FillRandom(const char *fname, Int_t ntimes=5000) { TH1::FillRandom(fname, ntimes); }223 void FillRandom(TH1 *h, Int_t ntimes=5000) { TH1::FillRandom(h, ntimes); } 222 using TH1D::FillRandom; 223 224 224 void FillRandom(); 225 225 -
trunk/Mars/mpointing/MSrcPosCalc.h
r9613 r20095 25 25 { 26 26 public: 27 #pragma GCC diagnostic push 28 #pragma GCC diagnostic ignored "-Wshadow" 27 29 enum Mode_t { 28 30 kDefault = 0, // Set source position to on-position … … 31 33 kFixed = 3 // Set source position to predefined fFixedPos 32 34 }; 35 #pragma GCC diagnostic pop 33 36 private: 34 37 enum { -
trunk/Mars/mtools/MagicDomino.h
r9369 r20095 35 35 kUserBits = 0x7fc000, // 14-23 are allowed 36 36 37 #pragma GCC diagnostic push 38 #pragma GCC diagnostic ignored "-Wshadow" 37 39 kBottomLeft = kBottom|kLeft, 38 40 kBottomRight = kBottom|kRight, 39 41 kTopLeft = kTop|kLeft, 40 42 kTopRight = kTop|kRight 43 #pragma GCC diagnostic pop 41 44 42 45 };
Note:
See TracChangeset
for help on using the changeset viewer.