Yanzhao Wang (王彦昭)
Yanzhao Wang (王彦昭)
> I understand what Conan package manager can do, but why do you need this for R3BRoot? To handle 4 dependencies? I would say to handle dependencies easier and more...
> `Ptr fCalifaMappedData=AddInput(fInputName);` Maybe you could default initialise variable first and then AddInput to FairRootManager in `Init()` function: ```cpp private: Ptr fCalifaMappedData; ``` ```cpp auto Init() { AddInput(fInputName, fCalifaMappedData); }...
This PR will be divided into multiple PRs with smaller sizes.
> One way to at least hint someone reading code would be to use some typedefs There is user defined suffix operator in C++ (check [this](https://en.cppreference.com/w/cpp/language/user_literal)). And we can write...
@klenze Do you think following usage is good? ``` auto length = 1_m; auto speed = 1_m/1_s; auto area = length*length; auto area2 = 1_m*1_m; ``` With suffix operator, I...
@jose-luis-rs Hi, please check the clang-tidy comments in "File Changed" tag. Or if you want to check the output, please check under the step "clang-tidy check" and all the warnings...
@jose-luis-rs I will fix the warnings from included files as soon as possible.
I will fix those warnings from included files. But even with this, warnings could still go to few hundreds. In this case, it only means the pushed code is badly...
> Where should we define this line? > > > > auto const PaddleNumber = 200; > > > > > > It depends on how long we need it....
> Usually these parameters are defined in-flight taking the right values from parameter containers, so the initial value is redundant. > > > > > > Could you give me...