Skip to content
Snippets Groups Projects
Commit 1be13eb0 authored by Theodore Efremov's avatar Theodore Efremov :hibiscus:
Browse files

Solved type problem

parent d3aefae4
No related branches found
No related tags found
1 merge request!27Draft: [Epic] Preparation of the environement for the new GaseousDetectorScorers...
Pipeline #370564 passed
...@@ -75,7 +75,7 @@ class TICData : public TObject { ...@@ -75,7 +75,7 @@ class TICData : public TObject {
{return fIC_Section[i];}//! {return fIC_Section[i];}//!
inline Double_t GetIC_Charge(const unsigned int &i) const inline Double_t GetIC_Charge(const unsigned int &i) const
{return fIC_Charge[i];}//! {return fIC_Charge[i];}//!
inline Double_t GetIC_TS(const unsigned int &i) const inline long GetIC_TS(const unsigned int &i) const
{return fIC_TS[i];}//! {return fIC_TS[i];}//!
////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////
......
...@@ -83,22 +83,22 @@ class TTimeData : public TObject { ...@@ -83,22 +83,22 @@ class TTimeData : public TObject {
////////////////////// GETTERS //////////////////////// ////////////////////// GETTERS ////////////////////////
inline UShort_t GetTS_MWPC13(const unsigned int &i) const inline long GetTS_MWPC13(const unsigned int &i) const
{return fTS_MWPC13.at(i) ;}//! {return fTS_MWPC13.at(i) ;}//!
inline UShort_t GetTS_MWPC14(const unsigned int &i) const inline long GetTS_MWPC14(const unsigned int &i) const
{return fTS_MWPC14.at(i) ;}//! {return fTS_MWPC14.at(i) ;}//!
inline UShort_t GetTS_MWPC23(const unsigned int &i) const inline long GetTS_MWPC23(const unsigned int &i) const
{return fTS_MWPC23.at(i) ;}//! {return fTS_MWPC23.at(i) ;}//!
inline UShort_t GetTS_MWPC24(const unsigned int &i) const inline long GetTS_MWPC24(const unsigned int &i) const
{return fTS_MWPC24.at(i) ;}//! {return fTS_MWPC24.at(i) ;}//!
inline UShort_t GetTime_MWPC13(const unsigned int &i) const inline float GetTime_MWPC13(const unsigned int &i) const
{return fTime_MWPC13.at(i) ;}//! {return fTime_MWPC13.at(i) ;}//!
inline UShort_t GetTime_MWPC14(const unsigned int &i) const inline float GetTime_MWPC14(const unsigned int &i) const
{return fTime_MWPC14.at(i) ;}//! {return fTime_MWPC14.at(i) ;}//!
inline UShort_t GetTime_MWPC23(const unsigned int &i) const inline float GetTime_MWPC23(const unsigned int &i) const
{return fTime_MWPC23.at(i) ;}//! {return fTime_MWPC23.at(i) ;}//!
inline UShort_t GetTime_MWPC24(const unsigned int &i) const inline float GetTime_MWPC24(const unsigned int &i) const
{return fTime_MWPC24.at(i) ;}//! {return fTime_MWPC24.at(i) ;}//!
inline UShort_t GetMWPCMult() const inline UShort_t GetMWPCMult() const
......
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