Skip to content

Commit

Permalink
Small corrections.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielWielanek committed Dec 16, 2024
1 parent 2add776 commit b6a3642
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions data/dataformat/McEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ namespace Hal {
public:
McEvent();
McEvent(const McEvent& other);
void SetImpactParameter(Double_t b) { fB = b; }
virtual void Update(EventInterface* interface);
inline Double_t GetImpactParameter() const { return fB; };
virtual EFormatType GetFormatType() const { return EFormatType::kSim; };
Expand Down
2 changes: 1 addition & 1 deletion data/io/DataManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

/**
* wrapper around FairRootManager, represents almost all I/O operations
* by uisnt IOManager
* by using IOManager
*/
class TFile;
class TList;
Expand Down
8 changes: 4 additions & 4 deletions data/io/IOManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ class TFile;
namespace Hal {
class InputDataInfo;
}
/**
* abstract class that represents almost all I/O operations (except writing histograms after completion of analysis
*/


namespace Hal {
class Package;
Expand All @@ -48,7 +46,9 @@ namespace Hal {
virtual ~BranchInfo() {};
ClassDef(BranchInfo, 1)
};

/**
* abstract class that represents almost all I/O operations (except writing histograms after completion of analysis
*/
class IOManager : public TObject {
public:
private:
Expand Down
2 changes: 1 addition & 1 deletion features/hist/styles/AxisStyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Hal {
class AxisStyle : public Style {

TString fTitle;
Bool_t fSkipTitle = {kFALSE};
Bool_t fSkipTitle;

public:
static const unsigned short int kTitleOffset;
Expand Down

0 comments on commit b6a3642

Please sign in to comment.