27 int ret = GetNodes(topNode);
37 int nTracklets = trackletVec->
size();
38 for(
int i = 0; i < nTracklets; ++i)
45 if(nHits < 9)
continue;
46 if(chisq > 20.)
continue;
48 for(
auto it = detectorIDs.begin(); it != detectorIDs.end(); ++it)
54 if(!p_geomSvc->
isInPlane(detectorID, x_exp, y_exp))
continue;
57 if(elementID_exp < 1 || elementID_exp > p_geomSvc->
getPlaneNElements(detectorID))
continue;
59 SQHit* hit = findHit(detectorID, elementID_exp);
81 hitVector = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
82 trackletVec = findNode::getClass<TrackletVector>(topNode,
"TrackletVector");
83 if(!hitVector || !trackletVec)
91 void AnaModule::MakeTree()
93 saveFile =
new TFile(saveName,
"RECREATE");
95 saveTree =
new TTree(
"save",
"Efficiency tree Created by AnaModule");
96 saveTree->Branch(
"eventID", &eventID,
"eventID/I");
97 saveTree->Branch(
"detectorID", &detectorID,
"detectorID/I");
98 saveTree->Branch(
"elementID_exp", &elementID_exp,
"elementID_exp/I");
99 saveTree->Branch(
"elementID_closest", &elementID_closest,
"elementID_closest/I");
100 saveTree->Branch(
"x_exp", &x_exp,
"x_exp/D");
101 saveTree->Branch(
"y_exp", &y_exp,
"y_exp/D");
102 saveTree->Branch(
"nHits", &nHits,
"nHits/I");
103 saveTree->Branch(
"chisq", &chisq,
"chisq/D");
111 SQHit* AnaModule::findHit(
int detID,
int eleID)
114 SQHit* hit =
nullptr;
117 if((*it)->get_detector_id() != detID)
continue;
118 int delta_temp = abs(eleID - (*it)->get_element_id());
119 if(delta > delta_temp)
void registerDetector(TString name)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
double getPlanePosition(int detectorID) const
int getPlaneNElements(int detectorID) const
int getExpElementID(int detectorID, double pos_exp)
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
std::vector< SQHit * >::iterator Iter
An SQ interface class to hold one detector hit.
virtual short get_element_id() const
Return the element ID of this hit.
const Tracklet * at(const size_t index) const
double getExpPositionY(double z) const
double getExpPositionX(double z) const
double getExpPositionW(int detectorID) const