We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be good to structure the source code better.
Suggestions:
include/hcana/HEADER.h
#include "hcana/THcParmList.h"
(note this doesn't have to happen in the current source code include directories can be added to compiler flags).
#include "hcana/ParameterList.h"
#include "hcana/cer/Cherenkov.h" #include "hcana/cer/CherenkovHit.h"
Here is how it could look:
hcana/include ├── beam │ ├── BCMCurrent.h │ ├── RasteredBeam.h │ ├── Raster.h │ └── RasterRawHit.h ├── cer │ ├── Aerogel.h │ ├── AerogelHit.h │ ├── Cherenkov.h │ └── CherenkovHit.h ├── core │ ├── Analyzer.h │ ├── ConfigEvtHandler.h │ ├── DetectorMap.h │ ├── DummySpectrometer.h │ ├── Formula.h │ ├── Globals.h │ ├── HallCSpectrometer.h │ ├── HitList.h │ ├── Interface.h │ ├── ParmList.h │ ├── PeriodicReport.h │ ├── Run.h │ ├── RunParameters.h │ └── SignalHit.h ├── dc │ ├── DC.h │ ├── DCHit.h │ ├── DCLookupTTDConv.h │ ├── DCTimeToDistConv.h │ ├── DCTrack.h │ ├── DCWire.h │ ├── DriftChamber.h │ └── DriftChamberPlane.h ├── hodo │ ├── HodoEff.h │ ├── HodoHit.h │ ├── Hodoscope.h │ └── ScintillatorPlane.h ├── phys ├── raw │ ├── RawAdcHit.h │ ├── RawDCHit.h │ ├── RawHit.h │ ├── RawHodoHit.h │ ├── RawShowerHit.h │ └── RawTdcHit.h ├── recon │ ├── CoinTime.h │ ├── ExtTarCor.h │ ├── PrimaryKine.h │ ├── ReactionPoint.h │ ├── SecondaryKine.h │ └── SpacePoint.h ├── scaler │ ├── Scaler9001.h │ ├── Scaler9250.h │ └── ScalerEvtHandler.h ├── shower │ ├── ShowerArray.h │ ├── Shower.h │ ├── ShowerHit.h │ └── ShowerPlane.h └── trig ├── TimeSyncEvtHandler.h ├── TrigApp.h ├── TrigDet.h ├── TrigRawHit.h └── TIBlobModule.h
Again, this is just a suggestion to help others understand the code, and is common practice in C++ projects.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be good to structure the source code better.
Suggestions:
include/hcana/HEADER.h
.(note this doesn't have to happen in the current source code include directories can be added to compiler flags).
Here is how it could look:
Again, this is just a suggestion to help others understand the code, and is common practice in C++ projects.
The text was updated successfully, but these errors were encountered: