unexpected token for OR

I get this error… Unexpected token ||

Isn’t that an OR?

if (pdbLine_[3]==“DT” pdbLine[k][3]==“DA”) || (pdbLine*[3]==“DA” pdbLine[k][3]==“DT”){_
_
}*_
here is the relevant code.
Thanks,
Dan

Yes, but you’re basically doing

if (…) || (…)

which is not allowed. It needs to be

if ( (…) || (…) )

–Eric